.page-gdpr {
    color: #333333; /* Dark text for light 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;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px; /* Minimum height for hero section */
    background-color: #000000; /* Dark background for hero text overlay */
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Slightly dim the image to make text readable */
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 10;
    color: #FFFFFF;
    max-width: 800px;
    padding: 40px 20px;
}

.page-gdpr__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #F0F0F0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
}

.page-gdpr__button--register {
    background-color: #000000; /* Primary color for register button */
    color: #FFFFFF; /* Text color for register button */
    border: 2px solid #FFFFFF;
}

.page-gdpr__button--register:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.page-gdpr__button--login {
    background-color: #FCBC45; /* Login button background color */
    color: #000000; /* Dark text for contrast on login button */
    border: 2px solid #FCBC45;
}

.page-gdpr__button--login:hover {
    background-color: #e0a538;
    transform: translateY(-2px);
}

.page-gdpr__button--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-gdpr__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-gdpr__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #FFFFFF; /* Page background color */
}

.page-gdpr__section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EEEEEE;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 20px;
    width: 100%;
}

.page-gdpr__text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333333;
    flex: 1;
    min-width: 300px;
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #333333;
    flex: 1;
    min-width: 300px;
}

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

.page-gdpr__image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image--left {
    order: -1;
    margin-right: 40px;
}

.page-gdpr__image--right {
    margin-left: 40px;
}

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

.page-gdpr__link:hover {
    text-decoration: underline;
}

.page-gdpr__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    margin-top: 40px;
}

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

.page-gdpr__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-gdpr__faq-item {
    background-color: #F9F9F9;
    border: 1px solid #EEEEEE;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 15px;
}

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

.page-gdpr__faq-answer {
    font-size: 1.0em;
    color: #333333;
}

/* Desktop styles */
@media (min-width: 769px) {
    .page-gdpr__section:nth-of-type(odd) .page-gdpr__image--left {
        order: 2;
        margin-left: 40px;
        margin-right: 0;
    }

    .page-gdpr__section:nth-of-type(odd) .page-gdpr__text,
    .page-gdpr__section:nth-of-type(odd) .page-gdpr__list {
        order: 1;
    }
}

/* Tablet and Mobile adjustments */
@media (max-width: 768px) {
    .page-gdpr {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    }

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

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

    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 1em;
        margin: 5px;
    }

    .page-gdpr__content-area {
        padding: 30px 15px;
    }

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

    .page-gdpr__text, .page-gdpr__list {
        font-size: 1em;
    }

    .page-gdpr__image {
        max-width: 100%;
        margin: 20px auto;
        order: initial; /* Reset order for mobile */
    }

    .page-gdpr__image--left, .page-gdpr__image--right {
        margin-left: auto;
        margin-right: auto;
    }

    .page-gdpr__section {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-gdpr__section .page-gdpr__text, 
    .page-gdpr__section .page-gdpr__list {
        width: 100%;
    }

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

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

    /* Ensure images in content area do not overflow */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
    /* Content area specific images must be >= 200px */
    .page-gdpr__image {
        min-width: 200px;
        min-height: 200px;
    }
}