.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    background-color: #08160F;
    color: #F2FFF6;
    text-align: center;
}

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

.page-gdpr__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 5vw, 3.5em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #F2FFF6;
}

.page-gdpr__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #A7D9B8;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-gdpr__btn-secondary {
    background-color: transparent;
    color: #F2FFF6;
    border: 2px solid #2E7A4E;
}

.page-gdpr__btn-secondary:hover {
    background-color: #2E7A4E;
    color: #ffffff;
}

.page-gdpr__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #08160F;
    color: #F2FFF6;
}

.page-gdpr__section-title {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 25px;
    color: #F2C14E; /* Gold */
    text-align: center;
}

.page-gdpr__text-block {
    margin-bottom: 20px;
    color: #A7D9B8;
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #A7D9B8;
}

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

.page-gdpr__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
}

/* FAQ Section Styling */
.page-gdpr__faq-list {
    margin-top: 30px;
}

.page-gdpr__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #1E3A2A; /* Divider */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    color: #F2FFF6;
    background-color: #11271B;
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: #0A4B2C; /* Deep Green */
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #57E38D; /* Glow */
}

.page-gdpr__faq-item summary {
    list-style: none;
}
.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-gdpr__faq-answer {
    padding: 0 25px 20px 25px;
    color: #A7D9B8;
    font-size: 0.95em;
    line-height: 1.5;
}

.page-gdpr__faq-answer p {
    margin-bottom: 10px;
}

/* CTA Section */
.page-gdpr__cta-section {
    background-color: #08160F;
    color: #F2FFF6;
    text-align: center;
    padding: 80px 20px;
}

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

.page-gdpr__cta-title {
    font-size: clamp(1.8em, 4vw, 2.8em);
    font-weight: 700;
    margin-bottom: 20px;
    color: #F2FFF6;
}

.page-gdpr__cta-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #A7D9B8;
}

.page-gdpr__cta-buttons--center {
    justify-content: center;
}

.page-gdpr__copyright {
    text-align: center;
    padding: 20px;
    background-color: #0A4B2C; /* Deep Green */
    color: #A7D9B8;
    font-size: 0.9em;
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-gdpr__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* Small top padding, body handles header offset */
    }

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

    .page-gdpr__description {
        font-size: 1em;
    }

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

    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-gdpr__section {
        padding: 30px 15px;
    }

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

    .page-gdpr__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        margin-left: auto;
        margin-right: auto;
    }

    .page-gdpr__hero-section,
    .page-gdpr__section,
    .page-gdpr__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-gdpr__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-gdpr__faq-answer {
        padding: 0 20px 15px 20px;
    }

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

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