:root {
    --rich9-primary: #F2C14E;
    --rich9-secondary: #FFD36B;
    --rich9-button-gradient-start: #FFD86A;
    --rich9-button-gradient-end: #DDA11D;
    --rich9-card-bg: #111111;
    --rich9-background: #0A0A0A;
    --rich9-text-main: #FFF6D6;
    --rich9-border: #3A2A12;
    --rich9-glow: #FFD36B;
}

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

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px 60px;
    box-sizing: border-box;
    overflow: hidden;
}

.page-privacy-policy__hero-content-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    width: 100%;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.page-privacy-policy__hero-image-container {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 20px;
}

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

.page-privacy-policy__hero-text-content {
    max-width: 800px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-privacy-policy__main-title {
    font-size: clamp(2em, 4vw, 2.8em);
    color: var(--rich9-secondary);
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

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

.page-privacy-policy__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-privacy-policy__btn-primary {
    background: linear-gradient(180deg, var(--rich9-button-gradient-start) 0%, var(--rich9-button-gradient-end) 100%);
    color: #000000;
    border: 2px solid transparent;
}

.page-privacy-policy__btn-primary:hover {
    background: linear-gradient(180deg, #FFE082 0%, #E8B43F 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-privacy-policy__btn-secondary {
    background: transparent;
    color: var(--rich9-secondary);
    border: 2px solid var(--rich9-secondary);
}

.page-privacy-policy__btn-secondary:hover {
    background: var(--rich9-secondary);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.2);
}

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

.page-privacy-policy__section-wrapper {
    background-color: var(--rich9-card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--rich9-border);
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: var(--rich9-primary);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.page-privacy-policy__section-title:first-of-type {
    margin-top: 0;
}

.page-privacy-policy__sub-title {
    font-size: 1.6em;
    color: var(--rich9-secondary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-privacy-policy__paragraph {
    font-size: 1em;
    color: var(--rich9-text-main);
    margin-bottom: 15px;
    text-align: justify;
}

.page-privacy-policy__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: var(--rich9-text-main);
}

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

.page-privacy-policy__list-item strong {
    color: var(--rich9-secondary);
}

.page-privacy-policy__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
    max-width: 800px;
}

.page-privacy-policy a {
    color: var(--rich9-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
    color: var(--rich9-primary);
    text-decoration: underline;
}

.page-privacy-policy__faq-section {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--rich9-card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--rich9-border);
}

.page-privacy-policy__faq-section .page-privacy-policy__section-title {
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
}

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

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #1a1a1a;
    color: var(--rich9-text-main);
    font-size: 1.15em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question:hover {
    background-color: #2a2a2a;
}

.page-privacy-policy__faq-title {
    margin: 0;
    flex-grow: 1;
    color: var(--rich9-text-main);
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--rich9-secondary);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
    transform: rotate(45deg);
    color: var(--rich9-primary);
}

.page-privacy-policy__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #222222;
    color: var(--rich9-text-main);
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    max-height: 1000px !important;
    padding: 15px 25px 20px;
}

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

@media (max-width: 1024px) {
    .page-privacy-policy__hero-section {
        padding-bottom: 40px;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em);
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.4em;
    }
    .page-privacy-policy__section-wrapper,
    .page-privacy-policy__faq-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 15px;
        line-height: 1.5;
    }
    .page-privacy-policy__hero-section {
        padding: 10px 15px 30px;
    }
    .page-privacy-policy__hero-content-wrapper {
        gap: 20px;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(1.6em, 6vw, 2.2em);
        text-align: center;
    }
    .page-privacy-policy__tagline {
        font-size: 1em;
        text-align: center;
    }
    .page-privacy-policy__cta-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-privacy-policy__content-area {
        padding: 25px 15px;
    }
    .page-privacy-policy__section-wrapper,
    .page-privacy-policy__faq-section {
        padding: 25px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.6em;
        margin-top: 30px;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.2em;
        margin-top: 25px;
    }
    .page-privacy-policy__list {
        padding-left: 20px;
    }
    .page-privacy-policy__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto;
    }
    .page-privacy-policy__faq-question {
        padding: 15px 20px;
        font-size: 1.05em;
    }
    .page-privacy-policy__faq-answer {
        padding: 0 20px;
    }
    .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
        padding: 15px 20px 20px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__section-title {
        font-size: 1.4em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.1em;
    }
    .page-privacy-policy__faq-question {
        font-size: 1em;
    }
}