/* style/privacy-policy.css */

/* --- Base Styles & Layout --- */
.page-privacy-policy {
    background-color: #08160F; /* Custom: Background */
    color: #F2FFF6; /* Custom: Text Main */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    font-size: 16px;
}

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

.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 0;
    background-color: #08160F; /* Match body bg */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for hero image */
    overflow: hidden;
    position: relative;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.7;
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 900px;
    margin-top: -150px;
    background: rgba(8, 22, 15, 0.7);
    border-radius: 10px;
}


/* --- Typography --- */
.page-privacy-policy__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F2C14E; /* Custom: Gold */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.page-privacy-policy__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F2C14E; /* Custom: Gold */
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    padding-top: 40px;
}

.page-privacy-policy__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #2AD16F; /* A brighter green from the gradient for emphasis */
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
}

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

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

.page-privacy-policy__list-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #F2FFF6; /* Custom: Text Main */
}

.page-privacy-policy__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #2AD16F; /* Bright green checkmark */
}

.page-privacy-policy__link {
    color: #57E38D; /* Custom: Glow for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #F2C14E; /* Custom: Gold on hover */
    text-decoration: underline;
}

/* --- Buttons --- */
.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-privacy-policy__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.6); /* Custom: Glow effect */
}

.page-privacy-policy__btn-secondary {
    background: #11271B; /* Custom: Card BG */
    color: #2AD16F; /* Bright green */
    border: 2px solid #2AD16F;
    margin-left: 20px;
}

.page-privacy-policy__btn-secondary:hover {
    background: #2AD16F;
    color: #F2FFF6;
    border-color: #F2FFF6;
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}


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

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

.page-privacy-policy__dark-bg {
    background-color: #11271B; /* Custom: Card BG */
    color: #F2FFF6; /* Custom: Text Main */
}

.page-privacy-policy__light-bg {
    background-color: #08160F; /* Custom: Background */
    color: #F2FFF6; /* Custom: Text Main */
}

.page-privacy-policy__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

/* --- FAQ Section --- */
.page-privacy-policy__faq-section {
    padding: 60px 0;
    background-color: #11271B; /* Custom: Card BG */
}

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

.page-privacy-policy__faq-item {
    background-color: #08160F; /* Custom: Background */
    border: 1px solid #2E7A4E; /* Custom: Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #F2FFF6; /* Custom: Text Main */
    cursor: pointer;
    background-color: #0A4B2C; /* Custom: Deep Green for question background */
    user-select: none;
    transition: background-color 0.3s ease;
}

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

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

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

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
    content: '−';
}

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

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


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

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

    .page-privacy-policy__hero-section {
        padding: 40px 0;
        padding-top: 10px !important; /* Small top padding for hero section */
    }

    .page-privacy-policy__hero-image-wrapper {
        max-height: 400px; /* Adjust max height for mobile hero */
    }

    .page-privacy-policy__hero-content {
        margin-top: -80px;
        padding: 10px;
    }

    .page-privacy-policy__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-privacy-policy__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-privacy-policy__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 25px;
        padding-top: 30px;
    }

    .page-privacy-policy__sub-title {
        font-size: clamp(1.3rem, 6vw, 1.7rem);
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .page-privacy-policy__list-item {
        padding-left: 20px;
        margin-bottom: 8px;
    }

    /* Images responsiveness */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    /* Buttons responsiveness */
    .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: 12px 15px !important;
        font-size: 1rem !important;
        margin-left: 0 !important;
        margin-bottom: 10px;
    }

    .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;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

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

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