:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg: #111111;
    --background-color: #0A0A0A;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-privacy-policy {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-main-color);
    line-height: 1.6;
    font-size: 16px;
}

.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 80px;
    background-color: var(--primary-color);
    color: #000;
}

.page-privacy-policy__hero-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-privacy-policy__main-title {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--background-color); /* Darker text for contrast on primary color background */
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.page-privacy-policy__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: var(--background-color); /* Darker text for contrast on primary color background */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: var(--text-main-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__section {
    padding: 80px 20px;
}

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-privacy-policy__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.page-privacy-policy__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-privacy-policy__sub-title {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--text-main-color);
    margin-top: 50px;
    margin-bottom: 25px;
}

.page-privacy-policy p {
    margin-bottom: 20px;
    color: var(--text-main-color);
    font-size: 1.05em;
}

.page-privacy-policy ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-privacy-policy ul li {
    margin-bottom: 10px;
    color: var(--text-main-color);
}

.page-privacy-policy__dark-bg {
    background-color: var(--card-bg);
    color: var(--text-main-color);
}

.page-privacy-policy__image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    margin: 40px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.page-privacy-policy__faq-section {
    background-color: var(--background-color);
    padding-top: 60px;
    padding-bottom: 80px;
}

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

details.page-privacy-policy__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--text-main-color);
    font-weight: 600;
    font-size: 1.1em;
}

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

details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question:hover {
    background: rgba(var(--primary-color), 0.1);
}

.page-privacy-policy__faq-qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
}

.page-privacy-policy__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
    transition: transform 0.2s ease;
}

details.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
    transform: rotate(45deg);
}

details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
    padding: 0 25px 20px;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 5px 5px;
    color: var(--text-main-color);
    font-size: 1em;
}

.page-privacy-policy__call-to-action {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

.page-privacy-policy__text-center {
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 15px;
        line-height: 1.6;
    }
    .page-privacy-policy__hero-section {
        padding-top: 10px !important;
        padding-bottom: 60px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-privacy-policy__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-privacy-policy__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-privacy-policy__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: auto;
        margin-right: auto;
    }
    .page-privacy-policy__section {
        padding: 60px 0;
    }
    .page-privacy-policy__content-area {
        padding: 0 15px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.4em;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-privacy-policy__image {
        margin: 30px auto;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-privacy-policy__faq-qtext {
        font-size: 15px;
    }
    .page-privacy-policy__faq-toggle {
        font-size: 20px;
        width: 24px;
        margin-left: 10px;
    }
    details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
        padding: 0 20px 15px;
    }
    .page-privacy-policy__call-to-action {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .page-privacy-policy p, .page-privacy-policy ul li {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.6em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.2em;
    }
    .page-privacy-policy__cta-button {
        font-size: 15px;
        padding: 10px 25px;
    }
    .page-privacy-policy__hero-description {
        font-size: 0.95em;
    }
}