:root {
    --nk888-primary: #11A84E;
    --nk888-secondary: #22C768;
    --nk888-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --nk888-card-bg: #11271B;
    --nk888-background: #08160F;
    --nk888-text-main: #F2FFF6;
    --nk888-text-secondary: #A7D9B8;
    --nk888-border: #2E7A4E;
    --nk888-glow: #57E38D;
    --nk888-gold: #F2C14E;
    --nk888-divider: #1E3A2A;
    --nk888-deep-green: #0A4B2C;
}

.page-privacy-policy {
    background-color: var(--nk888-background); /* Explicitly set for content area */
    color: var(--nk888-text-main); /* Light text for dark background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-bottom: 60px; /* Add some padding at the bottom */
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as body handles header offset */
    background-color: var(--nk888-deep-green); /* Example background for hero */
    color: var(--nk888-text-main);
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 30px; /* Space between image and text */
    border-radius: 8px;
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-privacy-policy__hero-content h1 {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
    color: var(--nk888-gold); /* Gold color for H1 */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-privacy-policy__hero-content p {
    font-size: 1.1em;
    color: var(--nk888-text-secondary);
    margin-bottom: 30px;
}

.page-privacy-policy__main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-privacy-policy__section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--nk888-card-bg); /* Darker card background */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--nk888-border);
}

.page-privacy-policy__section h2 {
    font-size: 2em;
    color: var(--nk888-primary); /* Primary color for H2 */
    margin-bottom: 20px;
    border-bottom: 2px solid var(--nk888-divider);
    padding-bottom: 10px;
    font-weight: bold;
}

.page-privacy-policy__section h3 {
    font-size: 1.5em;
    color: var(--nk888-secondary); /* Secondary color for H3 */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-privacy-policy__section p {
    margin-bottom: 15px;
    color: var(--nk888-text-main);
}

.page-privacy-policy__section ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--nk888-text-main);
}

.page-privacy-policy__section ul li {
    margin-bottom: 8px;
}

.page-privacy-policy__section a {
    color: var(--nk888-glow); /* Link color */
    text-decoration: underline;
}

.page-privacy-policy__section a:hover {
    color: var(--nk888-gold);
    text-decoration: none;
}

/* Call to Action Button */
.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--nk888-button-gradient);
    color: var(--nk888-text-main);
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

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

.page-privacy-policy__faq-item {
    background-color: var(--nk888-card-bg);
    border: 1px solid var(--nk888-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-privacy-policy__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--nk888-primary);
    cursor: pointer;
    list-style: none; /* Hide default marker */
    background-color: var(--nk888-deep-green);
    border-bottom: 1px solid var(--nk888-border);
}

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

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

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--nk888-gold);
    margin-left: 15px;
}

.page-privacy-policy__faq-answer {
    padding: 20px 25px;
    font-size: 0.95em;
    color: var(--nk888-text-secondary);
}

.page-privacy-policy__faq-answer p {
    margin-bottom: 0;
}

/* Image styles */
.page-privacy-policy img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 20px auto; /* Center images */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* Small top padding for mobile */
    }

    .page-privacy-policy__hero-content h1 {
        font-size: 2em; /* Adjust H1 for mobile */
    }

    .page-privacy-policy__hero-content p {
        font-size: 1em;
    }

    .page-privacy-policy__main-content {
        padding: 20px 15px;
    }

    .page-privacy-policy__section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .page-privacy-policy__section h2 {
        font-size: 1.7em;
    }

    .page-privacy-policy__section h3 {
        font-size: 1.3em;
    }

    /* Images responsive */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    /* Image containers responsive */
    .page-privacy-policy__section,
    .page-privacy-policy__hero-section,
    .page-privacy-policy__main-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Buttons responsive */
    .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; /* Ensure padding on mobile buttons */
        padding-right: 15px;
        text-align: center; /* Center button text */
    }

    .page-privacy-policy__button-group { /* If multiple buttons */
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    /* FAQ responsive */
    .page-privacy-policy__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }

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