.page-gdpr {
    padding-top: var(--header-offset, 120px);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #FFFFFF; /* Explicitly set for contrast */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-gdpr__hero-section {
    background-color: #000000; /* Dark background for hero */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    z-index: 0;
}

.page-gdpr__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    color: #FFFFFF; /* Light text for dark hero background */
}

.page-gdpr__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FCBC45; /* Highlight with a contrasting color */
    font-weight: 700;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1.1em;
}

.page-gdpr__cta-button--primary {
    background-color: #FCBC45; /* Login color */
    color: #000000;
    border-color: #FCBC45;
}

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

.page-gdpr__content-section {
    padding: 60px 20px;
    background-color: #FFFFFF; /* Light background for content */
    color: #333333;
}

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
    font-weight: 600;
}

.page-gdpr__section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555555;
}

.page-gdpr__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-gdpr__grid-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.page-gdpr__grid-item:hover {
    transform: translateY(-5px);
}

.page-gdpr__grid-image {
    width: 200px; /* Min size for content images */
    height: 200px; /* Min size for content images */
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.page-gdpr__item-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #000000;
    font-weight: 600;
}

.page-gdpr__item-description {
    font-size: 1em;
    color: #555555;
}

.page-gdpr__cta-section {
    background-color: #000000; /* Dark background for CTA */
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
}

.page-gdpr__cta-container {
    max-width: 900px;
}

.page-gdpr__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FCBC45;
    font-weight: 700;
}

.page-gdpr__cta-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-gdpr__cta-button--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.page-gdpr__cta-button--secondary:hover {
    background-color: #FFFFFF;
    color: #000000;
}

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

    .page-gdpr__hero-title {
        font-size: 2.2em;
    }

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

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

    .page-gdpr__section-intro {
        font-size: 1em;
    }

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

    .page-gdpr__grid-item {
        padding: 25px;
    }

    .page-gdpr__grid-image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
    }

    .page-gdpr__cta-section {
        padding: 60px 15px;
    }

    .page-gdpr__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__cta-button {
        width: 100%;
        max-width: 280px; /* Limit button width on small screens */
    }

    /* Important: Content area images must be responsive and not too small */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

/* Ensure no small image sizes for content area images */
.page-gdpr__grid-item img {
    min-width: 200px;
    min-height: 200px;
}