.page-gdpr {
    color: #333333; /* Dark text for light body background */
}

.page-gdpr__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    padding-bottom: 60px;
    background-color: #1A2E40; /* Main brand color for hero background */
    text-align: center;
    overflow: hidden;
}

.page-gdpr__hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #ffffff;
}

.page-gdpr__hero-title {
    font-size: 3em;
    color: #FFD700; /* Auxiliary color for emphasis */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-gdpr__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color for buttons */
    color: #1A2E40; /* Main color for button text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__hero-button:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15; /* Subtle background image */
    overflow: hidden;
}

.page-gdpr__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-gdpr__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.6;
}

.page-gdpr__article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #1A2E40;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-gdpr__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
}

.page-gdpr__subsection-title {
    font-size: 1.8em;
    color: #1A2E40;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-gdpr__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

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

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-gdpr__list-item {
    background-color: #f9f9f9;
    border-left: 5px solid #FFD700;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333333;
}

.page-gdpr__list-item strong {
    color: #1A2E40;
}

.page-gdpr__contact-button {
    display: inline-block;
    background-color: #1A2E40;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-gdpr__contact-button:hover {
    background-color: #0d1a26;
}

.page-gdpr__cta-section {
    background-color: #FFD700; /* Auxiliary color for CTA background */
    padding: 80px 20px;
    text-align: center;
    color: #1A2E40; /* Main color for CTA text */
}

.page-gdpr__cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-gdpr__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #1A2E40;
}

.page-gdpr__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.5;
    color: #333333;
}

.page-gdpr__cta-button {
    display: inline-block;
    background-color: #1A2E40; /* Main color for CTA button */
    color: #FFD700; /* Auxiliary color for CTA button text */
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__cta-button:hover {
    background-color: #0d1a26;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2.2em;
    }

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

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

    .page-gdpr__subsection-title {
        font-size: 1.5em;
    }

    .page-gdpr__paragraph, .page-gdpr__list-item {
        font-size: 0.95em;
    }

    .page-gdpr__cta-title {
        font-size: 2em;
    }

    .page-gdpr__cta-description {
        font-size: 1.1em;
    }

    .page-gdpr__hero-section, .page-gdpr__content-area, .page-gdpr__cta-section {
        padding: 40px 15px;
    }

    .page-gdpr__article {
        padding: 20px;
    }

    /* Ensure content images do not overflow on mobile */
    .page-gdpr__image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }

    .page-gdpr__hero-description {
        font-size: 0.9em;
    }

    .page-gdpr__hero-button, .page-gdpr__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }

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

    .page-gdpr__subsection-title {
        font-size: 1.3em;
    }

    .page-gdpr__cta-title {
        font-size: 1.8em;
    }

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

    .page-gdpr__article {
        padding: 15px;
    }
}