/* style/gdpr.css */
/* Reset & Base Styles - scoped to .page-gdpr */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Page sections */
.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
    min-height: 600px;
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #F2FFF6;
}

.page-gdpr__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #F2FFF6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    width: 100%; /* Ensure container takes full width for responsive buttons */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Responsive button */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6;
    border: none;
}

.page-gdpr__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-secondary {
    background-color: transparent;
    color: #57E38D; /* Glow color for contrast */
    border: 2px solid #57E38D; /* Glow color for border */
}

.page-gdpr__btn-secondary:hover {
    background-color: #57E38D; /* Glow color as background */
    color: #08160F; /* Background color for text */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__content-section {
    padding: 80px 20px;
    text-align: center;
}

.page-gdpr__dark-section {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6;
}

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

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 40px;
    color: #F2FFF6;
}

.page-gdpr__dark-section .page-gdpr__section-title {
    color: #F2FFF6;
}

.page-gdpr__text-block {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.page-gdpr__text-block p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__dark-section .page-gdpr__text-block p {
    color: #A7D9B8;
}

.page-gdpr__text-block strong {
    color: #F2FFF6; /* Text Main */
}

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

.page-gdpr__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__list li::before {
    content: '✅'; /* Checkmark for list items */
    position: absolute;
    left: 0;
    color: #57E38D; /* Glow color */
}

.page-gdpr__image-inline {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border color */
}

/* FAQ Section */
.page-gdpr__faq-section {
    padding: 80px 20px;
    background-color: #08160F; /* Background */
    text-align: center;
}

.page-gdpr__faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-gdpr__faq-item {
    margin-bottom: 20px;
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 8px;
    overflow: hidden;
    background-color: #11271B; /* Card BG */
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #F2FFF6; /* Text Main */
    background-color: #0A4B2C; /* Deep Green */
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: #11A84E; /* Main color */
}

.page-gdpr__faq-qtext {
    flex-grow: 1;
}

.page-gdpr__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #F2C14E; /* Gold */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    color: #F2C14E;
}

.page-gdpr__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.7;
    /* Using browser default for details summary open/close, no explicit max-height transition */
}

/* Ensure details summary marker is hidden */
.page-gdpr__faq-item summary {
    list-style: none;
}
.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none;
}

/* CTA Bottom Section */
.page-gdpr__cta-bottom-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6;
}

.page-gdpr__cta-bottom-section .page-gdpr__section-title {
    color: #F2FFF6;
}

.page-gdpr__cta-bottom-section .page-gdpr__description {
    color: #A7D9B8;
    margin-bottom: 40px;
}

/* Link styling within content */
.page-gdpr__text-block a,
.page-gdpr__faq-answer a {
    color: #57E38D; /* Glow color for links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-gdpr__text-block a:hover,
.page-gdpr__faq-answer a:hover {
    color: #F2C14E; /* Gold color on hover */
}


/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-gdpr__hero-section {
        padding: 40px 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

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

    .page-gdpr__content-section,
    .page-gdpr__faq-section,
    .page-gdpr__cta-bottom-section {
        padding: 60px 15px;
    }

    .page-gdpr__section-title {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        min-height: 500px;
        padding: 30px 15px;
        padding-top: 10px !important;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

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

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

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

    .page-gdpr__content-section,
    .page-gdpr__faq-section,
    .page-gdpr__cta-bottom-section {
        padding: 40px 15px;
    }

    .page-gdpr__container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .page-gdpr__text-block {
        padding-left: 0;
        padding-right: 0;
    }

    .page-gdpr__section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .page-gdpr__text-block p,
    .page-gdpr__list li,
    .page-gdpr__faq-answer {
        font-size: 0.9rem;
    }

    .page-gdpr__image-inline {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

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

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

@media (max-width: 480px) {
    .page-gdpr__hero-section {
        padding: 20px 10px;
        padding-top: 10px !important;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

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

    .page-gdpr__content-section,
    .page-gdpr__faq-section,
    .page-gdpr__cta-bottom-section {
        padding: 30px 10px;
    }

    .page-gdpr__section-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }

    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        font-size: 0.9rem;
        padding: 10px 15px;
        padding-left: 10px;
        padding-right: 10px;
    }
}