/* style/privacy-policy.css */

/* Custom color variables for consistency */
:root {
    --vf88-primary: #11A84E; /* Main color */
    --vf88-secondary: #22C768; /* Auxiliary color */
    --vf88-bg-dark: #08160F; /* Background */
    --vf88-card-bg: #11271B; /* Card BG */
    --vf88-text-main: #F2FFF6; /* Text Main */
    --vf88-text-secondary: #A7D9B8; /* Text Secondary */
    --vf88-border: #2E7A4E; /* Border */
    --vf88-glow: #57E38D; /* Glow */
    --vf88-gold: #F2C14E; /* Gold */
    --vf88-divider: #1E3A2A; /* Divider */
    --vf88-deep-green: #0A4B2C; /* Deep Green */

    /* Button gradient */
    --vf88-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

/* Base styles for the page content */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: var(--vf88-text-main); /* Default text color for the page */
    background-color: var(--vf88-bg-dark); /* Page background */
    line-height: 1.6;
    padding-bottom: 50px; /* Add some padding at the bottom */
}

/* Hero Section */
.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px; /* Small top padding, larger bottom for separation */
    text-align: center;
    background-color: var(--vf88-bg-dark); /* Ensure background for hero */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for image container */
    margin-bottom: 20px; /* Space between image and text */
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px; /* Slightly rounded corners for aesthetics */
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--vf88-text-main);
}

.page-privacy-policy__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
    color: var(--vf88-gold); /* Gold color for main title */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-privacy-policy__description {
    font-size: 1.1em;
    color: var(--vf88-text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Content Area */
.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--vf88-card-bg); /* Use card background for content area */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: var(--vf88-text-main); /* Main text color for content */
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: var(--vf88-primary); /* Primary color for section titles */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--vf88-divider);
    padding-bottom: 10px;
}

.page-privacy-policy__sub-section-title {
    font-size: 1.6em;
    color: var(--vf88-secondary); /* Secondary color for sub-section titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    color: var(--vf88-text-main);
}

.page-privacy-policy__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--vf88-text-main);
}

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    color: var(--vf88-text-main);
}

.page-privacy-policy__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__contact-link {
    color: var(--vf88-glow); /* Glow color for contact links */
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__contact-link:hover {
    text-decoration: underline;
    color: var(--vf88-gold);
}

/* FAQ Section */
.page-privacy-policy__faq-list {
    margin-top: 30px;
}

.page-privacy-policy__faq-item {
    background-color: var(--vf88-bg-dark); /* Darker background for FAQ items */
    border: 1px solid var(--vf88-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-privacy-policy__faq-item summary {
    list-style: none; /* Hide default marker */
}

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

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--vf88-text-main);
    cursor: pointer;
    background-color: var(--vf88-card-bg); /* Card background for question */
    transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
    background-color: var(--vf88-deep-green); /* Darker green on hover */
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--vf88-glow); /* Glow color for toggle icon */
    margin-left: 15px;
}

.page-privacy-policy__faq-answer {
    padding: 0 25px 20px;
    color: var(--vf88-text-secondary);
    font-size: 1em;
    line-height: 1.5;
    background-color: var(--vf88-bg-dark); /* Dark background for answer */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-content {
        padding: 0 15px;
    }

    .page-privacy-policy__content-area {
        padding: 30px 15px;
    }

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

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

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

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

    .page-privacy-policy__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em); /* Adjust H1 for smaller screens */
        margin-bottom: 15px;
    }

    .page-privacy-policy__description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-privacy-policy__content-area {
        padding: 20px 15px;
        border-radius: 0; /* No border-radius on mobile for full width */
    }

    .page-privacy-policy__section-title {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-privacy-policy__sub-section-title {
        font-size: 1.2em;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-privacy-policy__list {
        margin-left: 20px;
    }

    /* Images responsiveness */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-privacy-policy__hero-image-wrapper,
    .page-privacy-policy__content-area,
    .page-privacy-policy__faq-item,
    .page-privacy-policy__image-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* Remove explicit padding-left/right here to let content-area handle it */
    }
    .page-privacy-policy__hero-image-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-privacy-policy__hero-image {
        border-radius: 0 !important;
    }

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

    .page-privacy-policy__faq-answer {
        padding: 0 20px 15px;
    }
    /* Ensure content area has padding */
    .page-privacy-policy__content-area {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}