:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    --card-background: #17191F;
    --site-background: #0D0E12;
    --text-main-color: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
}

.page-privacy-policy {
    font-family: Arial, sans-serif;
    color: var(--text-main-color); /* Light text for dark background */
    background-color: var(--site-background); /* Dark background */
    line-height: 1.6;
}

.page-privacy-policy h1, .page-privacy-policy h2, .page-privacy-policy h3, .page-privacy-policy h4, .page-privacy-policy h5, .page-privacy-policy h6 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-privacy-policy h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    color: var(--text-main-color);
}

.page-privacy-policy h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--secondary-color);
}

.page-privacy-policy h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-main-color);
}

.page-privacy-policy p {
    margin-bottom: 15px;
}

.page-privacy-policy a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.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 */
    background: var(--card-background);
}

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

.page-privacy-policy__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-privacy-policy__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__hero-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 25px;
    color: var(--text-main-color);
}

.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.2);
    max-width: 100%; /* Ensure button responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

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

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--site-background);
    color: var(--text-main-color);
    border-radius: 8px;
}

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

.page-privacy-policy__section-title {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    position: relative;
}

.page-privacy-policy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-privacy-policy__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-privacy-policy__list-item {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    padding: 15px;
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
    color: var(--text-main-color);
}

.page-privacy-policy__list-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.page-privacy-policy__list-title {
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-privacy-policy__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

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

.page-privacy-policy__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-privacy-policy__contact-item {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-main-color);
}

/* FAQ Section */
details.page-privacy-policy__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-background);
}

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

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(255, 255, 255, 0.1);
}

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

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

details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
    padding: 0 20px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 0 5px 5px;
    color: var(--text-main-color);
    font-size: 0.95rem;
}

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

.page-privacy-policy__faq-section {
    max-width: 1000px;
    margin: 0 auto 20px;
}

.page-privacy-policy__cta-section {
    padding: 50px 20px;
    text-align: center;
    background: var(--site-background);
}

.page-privacy-policy__cta-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--card-background);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.page-privacy-policy__cta-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-privacy-policy__cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-main-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 15px;
        line-height: 1.5;
    }

    .page-privacy-policy__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-privacy-policy__hero-image img {
        border-radius: 4px;
    }

    .page-privacy-policy__hero-content h1 {
        font-size: 2rem;
    }

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

    .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: 0;
        margin-right: 0;
    }

    .page-privacy-policy__section, .page-privacy-policy__content-area, .page-privacy-policy__faq-section, .page-privacy-policy__cta-section {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-privacy-policy__image-wrapper img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-privacy-policy__list-item {
        padding: 12px;
    }

    .page-privacy-policy__list-title {
        font-size: 1.1rem;
    }

    details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
        padding: 15px;
    }

    .page-privacy-policy__faq-qtext {
        font-size: 15px;
    }

    details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
        padding: 0 15px 15px;
    }

    .page-privacy-policy__cta-card {
        padding: 30px 20px;
    }

    .page-privacy-policy__cta-title {
        font-size: 1.8rem;
    }

    .page-privacy-policy__cta-description {
        font-size: 1rem;
    }
}