.page-gdpr {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-gdpr__hero-section {
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    text-align: center;
    background-color: #f8f8f8;
    color: #000000;
}

.page-gdpr__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 30px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #000000;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333333;
}

.page-gdpr__cta-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 200px;
    min-height: 50px;
}

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

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

.page-gdpr__compliance-overview,
.page-gdpr__data-transparency,
.page-gdpr__data-breach,
.page-gdpr__faq,
.page-gdpr__call-to-action {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-gdpr__compliance-overview {
    background-color: #f8f8f8;
}

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

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

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

.page-gdpr__feature-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-gdpr__feature-card:hover {
    transform: translateY(-5px);
}

.page-gdpr__feature-icon {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin-bottom: 20px;
    object-fit: contain;
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__feature-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__feature-description {
    font-size: 1em;
    color: #666666;
}

.page-gdpr__data-transparency {
    background-color: #f0f0f0;
}

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

.page-gdpr__transparency-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-gdpr__transparency-image {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__transparency-heading {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-gdpr__transparency-text {
    font-size: 1em;
    color: #666666;
}

.page-gdpr__transparency-text a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__transparency-text a:hover {
    text-decoration: underline;
}

.page-gdpr__data-breach {
    background-color: #FFFFFF;
}

.page-gdpr__breach-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    max-width: 800px;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__breach-callout {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 40px auto 0 auto;
    color: #555555;
}

.page-gdpr__breach-callout a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__breach-callout a:hover {
    text-decoration: underline;
}

.page-gdpr__faq {
    background-color: #f8f8f8;
}

.page-gdpr__faq-item {
    background-color: #FFFFFF;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-gdpr__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-gdpr__faq-answer {
    font-size: 1em;
    color: #666666;
}

.page-gdpr__faq-answer a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__faq-answer a:hover {
    text-decoration: underline;
}

.page-gdpr__call-to-action {
    text-align: center;
    background-color: #000000; /* Main color as background */
    color: #FFFFFF;
    padding: 80px 20px;
}

.page-gdpr__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
}

.page-gdpr__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-gdpr__cta-button--register {
    background-color: #FFFFFF;
    color: #000000;
    margin-right: 20px;
}

.page-gdpr__cta-button--register:hover {
    background-color: #e0e0e0;
}

.page-gdpr__cta-button--login {
    background-color: #FCBC45;
    color: #000000;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 2.8em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__cta-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section,
    .page-gdpr__compliance-overview,
    .page-gdpr__data-transparency,
    .page-gdpr__data-breach,
    .page-gdpr__faq,
    .page-gdpr__call-to-action {
        padding: 60px 0;
    }

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

    .page-gdpr__hero-description,
    .page-gdpr__section-intro,
    .page-gdpr__breach-callout,
    .page-gdpr__cta-description {
        font-size: 1em;
    }

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

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

    .page-gdpr__transparency-heading {
        font-size: 1.2em;
    }

    .page-gdpr__faq-question {
        font-size: 1.1em;
    }

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

    .page-gdpr__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .page-gdpr__cta-button--register {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .page-gdpr__cta-button--login {
        margin-right: 0;
    }

    .page-gdpr__cta-button:last-child {
        margin-bottom: 0;
    }

    .page-gdpr__features-grid,
    .page-gdpr__transparency-grid {
        grid-template-columns: 1fr;
    }

    /* Ensure content images are responsive and do not overflow */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px; /* Enforce minimum size */
    }

    /* Prevent horizontal scrolling */
    .page-gdpr {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__cta-title {
        font-size: 1.8em;
    }
    .page-gdpr__cta-button {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .page-gdpr__cta-button--register {
        margin-right: auto;
        margin-bottom: 15px;
    }
}