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

.page-gdpr__hero-section {
    background-color: #000000; /* Dark background for hero */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

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

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
    filter: brightness(0.6); /* Darken image to ensure text readability */
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login button color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

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

.page-gdpr__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    margin: 10px;
    min-width: 200px; /* Ensure buttons are not too small */
}

.page-gdpr__button--register {
    background-color: #FFFFFF; /* Register button background */
    color: #000000; /* Dark text for register button */
}

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

.page-gdpr__button--login {
    background-color: #FCBC45; /* Login button background */
    color: #000000; /* Dark text for login button */
}

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

.page-gdpr__button--explore, .page-gdpr__button--contact, .page-gdpr__button--join, .page-gdpr__button--faq {
    background-color: #FCBC45;
    color: #000000;
}

.page-gdpr__button--explore:hover, .page-gdpr__button--contact:hover, .page-gdpr__button--join:hover, .page-gdpr__button--faq:hover {
    background-color: #EBAA38;
    transform: translateY(-2px);
}

.page-gdpr__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__introduction-section, .page-gdpr__data-principles-section, .page-gdpr__data-collection-section, .page-gdpr__your-rights-section, .page-gdpr__security-measures-section, .page-gdpr__contact-section, .page-gdpr__faq-section, .page-gdpr__cta-section {
    padding: 60px 0;
    background-color: #F8F8F8; /* Light gray background for sections */
    margin-bottom: 20px;
}

.page-gdpr__introduction-section {
    background-color: #FFFFFF;
}

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

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

.page-gdpr__sub-section-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 20px;
}

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

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

.page-gdpr__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333333;
}

.page-gdpr__list-item::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #FCBC45;
    font-weight: bold;
}

.page-gdpr__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure image is not too small */
    min-height: 200px; /* Ensure image is not too small */
}

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

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

.page-gdpr__right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-gdpr__right-icon {
    width: 120px; /* Adjust size for content image, minimum 200px */
    height: 90px; /* Adjust size for content image, minimum 200px */
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
    min-width: 200px; /* Override to meet minimum size requirement */
    min-height: 200px; /* Override to meet minimum size requirement */
}

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

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

.page-gdpr__contact-list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.page-gdpr__contact-item {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333333;
}

.page-gdpr__contact-item strong {
    color: #000000;
}

.page-gdpr__contact-item a {
    color: #FCBC45;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr__contact-item a:hover {
    color: #EBAA38;
    text-decoration: underline;
}

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

.page-gdpr__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-gdpr__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FCBC45;
}

.page-gdpr__faq-answer {
    font-size: 1em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-gdpr__faq-item.active .page-gdpr__faq-question::after {
    content: '-';
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
    max-height: 200px; /* Adjust as needed */
}

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

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

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

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

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

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

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

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

    .page-gdpr__hero-section {
        padding: 60px 20px;
        min-height: 400px;
    }

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

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

    .page-gdpr__button {
        padding: 12px 25px;
        font-size: 1em;
        min-width: 160px;
    }

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

    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

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

    .page-gdpr__paragraph, .page-gdpr__list-item, .page-gdpr__right-description, .page-gdpr__contact-item, .page-gdpr__faq-answer {
        font-size: 0.95em;
    }

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

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

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

    .page-gdpr__image-full-width, .page-gdpr__right-icon {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure image is not too small */
        min-height: 200px; /* Ensure image is not too small */
    }
}

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

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

    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 0.9em;
        min-width: unset;
    }

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

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

    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}