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

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    box-sizing: border-box;
    background-color: #11271B; /* Card BG */
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.page-gdpr__hero-content {
    max-width: 900px;
    text-align: center;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3em); /* H1 font size with clamp */
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-gdpr__lead-text {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

/* Content Area */
.page-gdpr__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-gdpr__section-block {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #2E7A4E; /* Border */
}

.page-gdpr__section-title {
    font-size: 2em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 25px;
    text-align: center;
}

.page-gdpr__paragraph {
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #2E7A4E; /* Border */
}

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

.page-gdpr__list-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__list-item::before {
    content: '✅'; /* Custom bullet point */
    position: absolute;
    left: 0;
    color: #57E38D; /* Glow */
}

.page-gdpr__list-title {
    font-size: 1.2em;
    color: #F2C14E; /* Gold */
    margin-bottom: 5px;
}

.page-gdpr__list-item p {
    color: #A7D9B8; /* Text Secondary */
}

/* Buttons */
.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    text-align: center;
    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%); /* Button gradient */
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
    margin-right: 15px;
}

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

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

.page-gdpr__btn-secondary:hover {
    background-color: #57E38D; /* Glow */
    color: #08160F; /* Background */
    transform: translateY(-2px);
}

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping for multiple buttons */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-gdpr__cta-buttons .page-gdpr__btn-primary,
.page-gdpr__cta-buttons .page-gdpr__btn-secondary {
    flex-grow: 1;
    max-width: 300px; /* Limit button width */
}

/* FAQ Section */
.page-gdpr__faq-section {
    background-color: #0A4B2C; /* Deep Green */
    border: 1px solid #1E3A2A; /* Divider */
}

.page-gdpr__faq-list {
    margin-top: 20px;
}

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

.page-gdpr__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #F2C14E; /* Gold */
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit */
}

.page-gdpr__faq-item summary:hover {
    background-color: #1E3A2A; /* Divider */
}

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

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    content: '−'; /* Minus sign when open */
}

.page-gdpr__faq-answer {
    padding: 0 25px 18px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.95em;
}

.page-gdpr__faq-answer p {
    margin-bottom: 0;
    color: #A7D9B8; /* Text Secondary */
}

/* Links within content */
.page-gdpr__paragraph a,
.page-gdpr__faq-answer a,
.page-gdpr__list-item a {
    color: #57E38D; /* Glow */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-gdpr__paragraph a:hover,
.page-gdpr__faq-answer a:hover,
.page-gdpr__list-item a:hover {
    color: #2AD16F; /* Lighter green */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr {
        font-size: 15px;
        line-height: 1.5;
    }

    .page-gdpr__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

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

    .page-gdpr__lead-text {
        font-size: 1em;
    }

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

    .page-gdpr__section-block {
        padding: 20px;
    }

    .page-gdpr__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    .page-gdpr__image-content {
        margin: 20px auto;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-gdpr__list-item {
        padding-left: 20px;
    }

    .page-gdpr__list-item::before {
        font-size: 0.9em;
        top: 3px;
    }

    .page-gdpr__list-title {
        font-size: 1.1em;
    }

    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .page-gdpr__cta-buttons .page-gdpr__btn-primary,
    .page-gdpr__cta-buttons .page-gdpr__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        margin-right: 0;
    }

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

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

    /* Enforce image responsiveness */
    .page-gdpr img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    .page-gdpr__hero-image-wrapper,
    .page-gdpr__section-block,
    .page-gdpr__content-area,
    .page-gdpr__cta-section,
    .page-gdpr__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}