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

/* Hero Section */
.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
    overflow: hidden;
    color: #F2FFF6;
    text-align: center;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    min-height: 300px; /* Ensure minimum height */
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 60px 20px;
    background-color: rgba(17, 39, 27, 0.7); /* Card B G with transparency */
    border-radius: 10px;
    margin-top: 150px; /* Push content down from the top edge if hero is full height */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #F2FFF6;
    letter-spacing: 0.05em;
    line-height: 1.2;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__intro-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    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);
}

/* Content Sections */
.page-privacy-policy__content-section {
    padding: 60px 0;
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

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

.page-privacy-policy__container {
    max-width: 1000px;
    width: 100%; /* Added for mobile responsiveness */
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-privacy-policy__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: #F2FFF6;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-privacy-policy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #22C768; /* Auxiliary color */
    border-radius: 2px;
}

.page-privacy-policy__sub-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #22C768; /* Auxiliary color */
}

.page-privacy-policy__paragraph {
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
}

.page-privacy-policy__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
}

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    color: #F2FFF6; /* Text Main */
}

.page-privacy-policy__list-item strong {
    color: #A7D9B8; /* Text Secondary */
}

.page-privacy-policy__content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__link {
    color: #2AD16F; /* Button gradient start color */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #57E38D; /* Glow */
}

/* Dark Background Sections */
.page-privacy-policy__dark-bg {
    background-color: #11271B; /* Card B G */
    color: #F2FFF6;
}

/* FAQ Section */
.page-privacy-policy__faq-section {
    padding-bottom: 80px;
}

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

.page-privacy-policy__faq-item {
    background-color: #0A4B2C; /* Deep Green */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-item[open] {
    background-color: #11271B; /* Card B G */
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #F2FFF6;
    cursor: pointer;
    list-style: none; /* For details/summary */
    outline: none;
}

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

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

.page-privacy-policy__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 20px;
    color: #2AD16F; /* Button gradient start color */
}

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

.page-privacy-policy__faq-answer p {
    margin-bottom: 0;
    color: inherit; /* Inherit color from parent */
}

/* Contact CTA Section */
.page-privacy-policy__contact-cta {
    padding: 80px 0;
    text-align: center;
}

.page-privacy-policy__contact-btn {
    margin-top: 30px;
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-content {
        margin-top: 100px;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-privacy-policy__hero-section {
        padding-bottom: 40px;
    }

    .page-privacy-policy__hero-image {
        min-height: 250px;
    }

    .page-privacy-policy__hero-content {
        margin-top: 80px;
        padding: 30px 15px;
        max-width: 95%;
    }

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

    .page-privacy-policy__intro-text {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

    .page-privacy-policy__cta-button {
        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;
    }

    .page-privacy-policy__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-privacy-policy__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 20px;
    }

    .page-privacy-policy__sub-title {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin-top: 30px;
    }

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

    .page-privacy-policy__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 30px auto;
    }

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

    .page-privacy-policy__faq-answer {
        padding: 0 15px 15px;
    }
    
    /* Ensure all images and video containers are responsive */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-privacy-policy__video-section,
    .page-privacy-policy__video-container,
    .page-privacy-policy__video-wrapper,
    .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;
        overflow: hidden !important;
    }

    .page-privacy-policy__video-section {
        padding-top: 10px !important;
    }
    
    .page-privacy-policy__cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}