.page-gdpr {
    background-color: #1A2E44;
    color: #E5E5E5;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 40px;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    max-height: 675px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-gdpr__hero-content {
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-gdpr__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFD700;
    margin-bottom: 15px;
    font-size: clamp(1.8em, 4vw, 2.8em); /* Responsive font size */
}

.page-gdpr__intro-description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.page-gdpr__cta-button--primary {
    background-color: #FFD700;
    color: #1A2E44;
}

.page-gdpr__cta-button--primary:hover {
    background-color: #e6c200;
}

.page-gdpr__cta-button--secondary {
    background-color: #1A2E44;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-gdpr__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #1A2E44;
}

.page-gdpr__content-section {
    padding: 40px 0;
}

.page-gdpr__container {
    width: 100%; /* Ensure container takes full width on desktop */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gdpr__section-title {
    color: #FFD700;
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-gdpr__paragraph {
    margin-bottom: 20px;
    text-align: justify;
}

.page-gdpr__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-gdpr__card {
    background-color: #1A2E44;
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr__card-title {
    color: #FFD700;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-gdpr__card-text {
    font-size: 0.95em;
}

.page-gdpr__inline-link {
    color: #FFD700;
    text-decoration: underline;
}

.page-gdpr__inline-link:hover {
    color: #e6c200;
}

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
}

.page-gdpr__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 30px;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
}

.page-gdpr__buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.page-gdpr__keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__hero-content {
        padding: 0 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.5em, 5vw, 2em); /* Adjust for smaller screens */
    }

    .page-gdpr__section-title {
        font-size: 1.6em;
    }

    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }

    .page-gdpr__cta-button {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }

    .page-gdpr__hero-image,
    .page-gdpr__content-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure mobile images don't go below 200px */
        min-height: 200px;
    }

    .page-gdpr__buttons-group {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__paragraph, .page-gdpr__card-text, .page-gdpr__list-item {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: clamp(1.2em, 6vw, 1.8em); /* Further adjust for very small screens */
    }

    .page-gdpr__intro-description {
        font-size: 1em;
    }

    .page-gdpr__section-title {
        font-size: 1.4em;
    }
}