/* style/privacy-policy.css */
/* Body padding-top is handled by shared.css for header offset */
.page-privacy-policy {
    background-color: var(--background-color, #08160F); /* Default to provided background color */
    color: var(--text-main-color, #F2FFF6); /* Default to provided main text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 50px; /* Add some padding at the bottom */
}

.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 */
    text-align: center;
    overflow: hidden; /* Ensure nothing overflows */
}

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

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

.page-privacy-policy__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--text-main-color, #F2FFF6);
    z-index: 1; /* Ensure content is above any background effects */
}

.page-privacy-policy__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: bold;
    color: var(--gold-color, #F2C14E); /* Use gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-privacy-policy__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-secondary-color, #A7D9B8);
}

.page-privacy-policy__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    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__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: var(--card-bg-color, #11271B); /* Card background color */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color, #2E7A4E);
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: var(--gold-color, #F2C14E);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--divider-color, #1E3A2A);
    padding-bottom: 10px;
    text-shadow: 0 0 5px rgba(87, 227, 141, 0.3);
}

.page-privacy-policy__sub-title {
    font-size: 1.6em;
    color: var(--text-main-color, #F2FFF6);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: var(--text-secondary-color, #A7D9B8);
}

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

.page-privacy-policy__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-secondary-color, #A7D9B8);
}

.page-privacy-policy__list-item {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-privacy-policy__list-item a {
    color: var(--glow-color, #57E38D); /* Link color */
    text-decoration: none;
}

.page-privacy-policy__list-item a:hover {
    text-decoration: underline;
}

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

.page-privacy-policy__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-privacy-policy__faq-item {
    background-color: var(--deep-green-color, #0A4B2C); /* Darker green for FAQ items */
    border: 1px solid var(--border-color, #2E7A4E);
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-main-color, #F2FFF6);
}

.page-privacy-policy__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.15em;
    color: var(--gold-color, #F2C14E);
    background-color: var(--card-bg-color, #11271B); /* Slightly different background for summary */
    border-bottom: 1px solid var(--divider-color, #1E3A2A);
    transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-item summary:hover {
    background-color: var(--deep-green-color, #0A4B2C);
}

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

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

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--glow-color, #57E38D);
    transition: transform 0.3s ease;
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
    transform: rotate(45deg); /* Rotate for 'x' or '-' effect */
}

.page-privacy-policy__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1em;
    color: var(--text-secondary-color, #A7D9B8);
}

.page-privacy-policy__faq-answer .page-privacy-policy__paragraph {
    margin-bottom: 0; /* Remove extra margin for paragraphs inside FAQ answer */
}

.page-privacy-policy__faq-answer a {
    color: var(--glow-color, #57E38D);
    text-decoration: none;
}

.page-privacy-policy__faq-answer a:hover {
    text-decoration: underline;
}

.keyword {
    color: var(--glow-color, #57E38D);
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-content {
        max-width: 768px;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__sub-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 15px;
    }
    .page-privacy-policy__hero-content {
        padding: 0 15px;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    .page-privacy-policy__intro-text {
        font-size: 1em;
    }
    .page-privacy-policy__btn-primary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-privacy-policy__content-area {
        margin: 30px auto;
        padding: 15px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 0.95em;
    }
    .page-privacy-policy__list {
        margin-left: 20px;
    }

    /* Mobile image responsiveness */
    .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;
    }
    .page-privacy-policy__hero-image-wrapper {
        padding: 0 15px;
    }
    .page-privacy-policy__hero-image {
        border-radius: 8px; /* Add border-radius for mobile hero image */
    }
    /* FAQ mobile adjustments */
    .page-privacy-policy__faq-item summary {
        padding: 15px 20px;
        font-size: 1.05em;
    }
    .page-privacy-policy__faq-answer {
        padding: 12px 20px 15px 20px;
        font-size: 0.9em;
    }
}