/* style/privacy-policy.css */

/* --- Base Styles --- */
.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #f8f9fa; /* Inherited from body, but explicitly set for content area */
}

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

/* --- Hero Section --- */
.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 40px; /* Space below image before content */
    background-color: #08160F; /* Dark background for hero section */
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height of hero image */
    overflow: hidden;
    margin-bottom: 20px; /* Space between image and text */
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly dim the image for text contrast, not color change */
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    color: #F2FFF6; /* Light text for dark hero background */
    padding: 0 20px;
}

.page-privacy-policy__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2FFF6;
}

.page-privacy-policy__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #A7D9B8;
}

/* --- Content Area --- */
.page-privacy-policy__content-area {
    padding: 60px 0;
    background-color: #f8f9fa; /* Light background for readability */
    color: #333333; /* Dark text for light background */
}

.page-privacy-policy__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #11A84E; /* Primary brand color for titles */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: left;
}

.page-privacy-policy__section-title--light {
    color: #F2FFF6;
}

.page-privacy-policy__sub-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #22C768; /* Auxiliary brand color for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-privacy-policy p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333333;
}

.page-privacy-policy ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #333333;
}

.page-privacy-policy ul li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #333333;
}

.page-privacy-policy a {
    color: #11A84E; /* Primary brand color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
    color: #0A4B2C; /* Deep Green on hover */
    text-decoration: underline;
}

.page-privacy-policy strong {
    font-weight: 700;
}

.page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- Contact List --- */
.page-privacy-policy__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.page-privacy-policy__contact-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333333;
}

.page-privacy-policy__contact-link {
    font-weight: 600;
}

/* --- CTA Section --- */
.page-privacy-policy__cta-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #11271B; /* Card BG color */
    border-radius: 12px;
    margin-top: 60px;
    color: #F2FFF6; /* Text Main */
}

.page-privacy-policy__cta-text {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #A7D9B8; /* Text Secondary */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #ffffff; /* White text for button */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Invert gradient on hover */
}

/* --- FAQ Section --- */
.page-privacy-policy__faq-section {
    padding: 60px 0;
    background-color: #08160F; /* Background color */
    color: #F2FFF6; /* Text Main */
}

.page-privacy-policy__faq-list {
    margin-top: 40px;
}

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

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    background-color: #11271B; /* Card BG */
    transition: background-color 0.3s ease;
}

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

.page-privacy-policy__faq-qtext {
    flex-grow: 1;
}

.page-privacy-policy__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: #57E38D; /* Glow color for toggle */
}

/* For details element, hide default marker */
.page-privacy-policy__faq-item summary {
    list-style: none;
}

.page-privacy-policy__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-privacy-policy__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #A7D9B8; /* Text Secondary */
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .page-privacy-policy__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .page-privacy-policy__section-title {
        font-size: 1.8rem;
    }

    .page-privacy-policy__sub-title {
        font-size: 1.4rem;
    }

    .page-privacy-policy__hero-image-wrapper {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    /* Mobile images responsive */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-privacy-policy__section,
    .page-privacy-policy__card,
    .page-privacy-policy__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Mobile buttons responsive */
    .page-privacy-policy__cta-button,
    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary,
    .page-privacy-policy a[class*="button"],
    .page-privacy-policy a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        display: block !important; /* Ensure buttons stack */
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .page-privacy-policy__cta-buttons,
    .page-privacy-policy__button-group,
    .page-privacy-policy__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        display: flex; /* Ensure flex behavior */
        flex-direction: column; /* Stack buttons vertically */
    }

    .page-privacy-policy__hero-section {
        padding-top: 10px !important; /* body already handles header offset */
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-privacy-policy__description {
        font-size: 1rem;
    }

    .page-privacy-policy__section-title {
        font-size: 1.6rem;
    }

    .page-privacy-policy__sub-title {
        font-size: 1.2rem;
    }

    .page-privacy-policy p,
    .page-privacy-policy ul li {
        font-size: 0.95rem;
    }

    .page-privacy-policy__cta-text {
        font-size: 1.1rem;
    }

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

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