/* style/gdpr.css */

/* Custom Colors */
:root {
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
    --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-gdpr {
    background-color: var(--color-background); /* #08160F */
    color: var(--color-text-main); /* #F2FFF6 */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    background-color: var(--color-background);
}

.page-gdpr__hero-image {
    width: 100%;
    max-width: 1200px; /* Adjust based on container */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gdpr__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
    color: var(--color-gold); /* #F2C14E */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.page-gdpr__description {
    font-size: 1.1rem;
    color: var(--color-text-secondary); /* #A7D9B8 */
    margin-bottom: 30px;
}

.page-gdpr__content-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--color-divider); /* #1E3A2A */
}

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

.page-gdpr__dark-bg {
    background-color: var(--color-card-bg); /* #11271B */
    color: var(--color-text-main); /* #F2FFF6 */
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--color-gold); /* #F2C14E */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-gdpr__text-block {
    font-size: 1rem;
    color: var(--color-text-secondary); /* #A7D9B8 */
    line-height: 1.7;
}

.page-gdpr__text-block p {
    margin-bottom: 15px;
}

.page-gdpr__text-block a {
    color: var(--color-glow); /* #57E38D */
    text-decoration: underline;
}

.page-gdpr__text-block ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-gdpr__text-block li {
    margin-bottom: 10px;
}

.page-gdpr__image-content {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section Styling */
.page-gdpr__faq-item {
    background-color: var(--color-deep-green); /* #0A4B2C */
    border: 1px solid var(--color-border); /* #2E7A4E */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--color-text-main); /* #F2FFF6 */
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-gold); /* #F2C14E */
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: var(--color-deep-green); /* #0A4B2C */
}

.page-gdpr__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-glow); /* #57E38D */
    margin-left: 15px;
}

.page-gdpr__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--color-text-secondary); /* #A7D9B8 */
}

/* For <details> tag, hide default marker */
.page-gdpr__faq-item summary {
    list-style: none;
}
.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none;
}


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

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

.page-gdpr__btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--color-button-gradient);
    color: #ffffff; /* White text for contrast */
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-gdpr__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__hero-image {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-gdpr__container {
        padding: 0 15px;
    }

    .page-gdpr__hero-section {
        padding-bottom: 30px;
    }

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

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

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

    .page-gdpr__content-section {
        padding: 40px 0;
    }

    .page-gdpr__text-block {
        font-size: 0.95rem;
    }

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

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

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

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

    .page-gdpr__btn-primary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 15px 20px;
    }

    /* Mobile image responsive adaptation */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-gdpr__hero-section,
    .page-gdpr__video-section { /* Added for consistency, though no video in this page */
        padding-top: 10px !important; /* body handles --header-offset */
    }

    /* Video responsive adaptation (if any, though not in this page) */
    .page-gdpr video,
    .page-gdpr__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-gdpr__video-section,
    .page-gdpr__video-container,
    .page-gdpr__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}