:root {
    --primary-color: #E53935;
    --secondary-color: #FF5A4F;
    --card-bg: #FFFFFF;
    --site-bg: #F5F7FA;
    --text-main: #333333;
    --border-color: #E0E0E0;
    --button-gradient: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

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

.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: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.2;
}

.page-privacy-policy h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
}

.page-privacy-policy h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
}

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

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

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

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

.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; 
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

.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;
    min-height: 200px;
}

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

.page-privacy-policy__hero-content p {
    font-size: 18px;
    margin-top: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-privacy-policy__content-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-privacy-policy__content-section:last-of-type {
    border-bottom: none;
}

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

.page-privacy-policy__list li {
    margin-bottom: 0.5em;
    font-size: 16px;
}

.page-privacy-policy__content-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy__faq-section {
    background-color: var(--site-bg);
    padding: 60px 0;
}

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

details.page-privacy-policy__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    color: var(--text-main);
}
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;
}
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: #f5f5f5;
}
.page-privacy-policy__faq-qtext {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main);
}
.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: #f9f9f9;
    border-radius: 0 0 5px 5px;
    color: var(--text-main);
}
.page-privacy-policy__faq-answer p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 16px;
        line-height: 1.6;
    }

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

    .page-privacy-policy__hero-content h1 {
        font-size: clamp(24px, 6vw, 36px);
    }

    .page-privacy-policy__hero-content p {
        font-size: 15px;
        padding: 0 5px;
    }

    .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__hero-image img {
        border-radius: 4px;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        min-height: unset;
    }

    .page-privacy-policy__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-privacy-policy__content-section {
        padding: 30px 0;
    }

    .page-privacy-policy__content-section h2 {
        font-size: clamp(20px, 5vw, 28px);
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-privacy-policy__content-section h3 {
        font-size: clamp(18px, 4vw, 24px);
    }

    .page-privacy-policy__list {
        margin-left: 20px;
    }

    .page-privacy-policy__list li,
    .page-privacy-policy p {
        font-size: 15px;
    }

    .page-privacy-policy__content-section img {
        margin: 20px auto;
        border-radius: 4px;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        min-width: unset;
        min-height: unset;
    }

    details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
        padding: 15px;
    }
    .page-privacy-policy__faq-qtext {
        font-size: 15px;
    }
    .page-privacy-policy__faq-toggle {
        font-size: 20px;
        width: 24px;
    }
    details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
        padding: 0 15px 15px;
    }
}