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

.page-privacy-policy {
    color: var(--text-main);
    background-color: var(--bg-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    overflow: hidden;
    text-align: center;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

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

.page-privacy-policy__hero-content {
    max-width: 900px;
    margin: -100px auto 0 auto; /* Pull content slightly over image for visual appeal */
    padding: 30px;
    background: rgba(17, 39, 27, 0.9); /* Semi-transparent card background */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
    position: relative;
    border: 1px solid var(--border-color);
}

.page-privacy-policy__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gold-color);
    margin-bottom: 20px;
    max-width: 100%;
    text-shadow: 0 0 8px var(--glow-color);
}

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

.page-privacy-policy__btn-primary {
    display: inline-block;
    background: var(--btn-gradient);
    color: var(--text-main);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-privacy-policy__section {
    padding: 50px 0;
    background-color: var(--bg-color);
}

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

.page-privacy-policy__section-title {
    color: var(--gold-color);
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 0 5px var(--glow-color);
}

.page-privacy-policy__content-block {
    margin-bottom: 30px;
}

.page-privacy-policy__card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-privacy-policy__sub-title {
    color: var(--gold-color);
    font-size: 1.8em;
    margin-bottom: 15px;
}

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

.page-privacy-policy__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 25px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy__text-link {
    color: var(--glow-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy__text-link:hover {
    color: var(--gold-color);
}

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

.page-privacy-policy__faq-item {
    margin-bottom: 20px;
    background-color: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.page-privacy-policy__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    list-style: none; /* Hide default marker */
}

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

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--gold-color);
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--glow-color);
}

.page-privacy-policy__faq-answer {
    padding: 0 30px 20px 30px;
    color: var(--text-secondary);
}

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

.page-privacy-policy__contact-block {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-content {
        margin-top: -80px;
        max-width: 700px;
    }
    .page-privacy-policy__main-title {
        font-size: 2.5em;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-content {
        margin-top: -60px;
        padding: 20px;
        max-width: 90%;
    }
    .page-privacy-policy__main-title {
        font-size: 2em !important;
    }
    .page-privacy-policy__description {
        font-size: 1em;
    }
    .page-privacy-policy__section {
        padding: 30px 0;
    }
    .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: 1.8em;
        margin-bottom: 30px;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.3em;
    }
    .page-privacy-policy__card {
        padding: 20px;
    }
    .page-privacy-policy p {
        font-size: 15px;
    }

    /* Images Responsive */
    .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;
    }
    .page-privacy-policy__hero-image-wrapper,
    .page-privacy-policy__content-block,
    .page-privacy-policy__card,
    .page-privacy-policy__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Buttons Responsive */
    .page-privacy-policy__btn-primary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-privacy-policy__faq-item summary {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-privacy-policy__faq-answer {
        padding: 0 20px 15px 20px;
    }
}