/* Import FAQ font */
@font-face {
    font-family: 'JiYingHuiPianYuan';
    src: url('../JiYingHuiPianYuan.ttf') format('truetype');
}

/* Privacy page specific styles */

/* Section 1 adjustments - no button needed */
/* Override title width for privacy page */
.section-1-title {
    width: 1400px !important;
    /* Double the original 500px */
}

/* Reduce font size for English titles */
html[lang="en"] .section-1-title {
    font-size: 60px !important;
}

.section-1 .section-1-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Section 2 - Privacy content container */
.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px 300px 30px;
    /* Match FAQ padding */
}

.privacy-text {
    font-family: 'JiYingHuiPianYuan', 'Microsoft YaHei', sans-serif;
    font-size: 25px;
    /* Match FAQ answer font size */
    font-weight: normal;
    color: #000000;
    /* Black text like FAQ */
    line-height: 42px;
    /* Match FAQ line height */
    text-align: left;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.privacy-text h2 {
    font-family: 'JiYingHuiPianYuan', 'Microsoft YaHei', sans-serif;
    font-size: 38px;
    /* Match FAQ question font size */
    font-weight: normal;
    color: #000000;
    line-height: 1.5;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

/* Blue line under h2 headings (like FAQ questions) */
.privacy-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 150px;
    height: 3px;
    background: #0078D7;
}

.privacy-text h3 {
    font-family: 'JiYingHuiPianYuan', 'Microsoft YaHei', sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: #000000;
    line-height: 1.5;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-text ul,
.privacy-text ol {
    margin-left: 60px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.privacy-text li {
    margin-bottom: 10px;
    line-height: 42px;
}

.privacy-text p {
    margin-bottom: 15px;
    line-height: 42px;
}

.privacy-text strong {
    font-weight: normal;
    /* Keep normal weight, just use for semantic meaning */
    color: #000000;
}

/* Responsive design */
@media screen and (max-width: 1600px) {
    .privacy-container {
        padding: 5.21vw 1.56vw 15.63vw 1.56vw;
    }

    .privacy-text {
        font-size: clamp(20px, 1.3vw, 25px);
        line-height: clamp(34px, 2.19vw, 42px);
    }

    .privacy-text h2 {
        font-size: clamp(28px, 1.98vw, 38px);
        padding-bottom: 0.78vw;
    }

    .privacy-text h2::after {
        width: 7.81vw;
        max-width: 150px;
        height: 0.16vw;
        max-height: 3px;
    }

    .privacy-text h3 {
        font-size: clamp(22px, 1.46vw, 28px);
    }

    .privacy-text ul,
    .privacy-text ol {
        margin-left: 1.56vw;
    }
}

@media screen and (max-width: 768px) {
    .privacy-container {
        padding: 40px 15px;
    }

    .privacy-text {
        font-size: 20px;
        line-height: 34px;
    }

    .privacy-text h2 {
        font-size: 28px;
    }

    .privacy-text h3 {
        font-size: 22px;
    }

    .privacy-text ul,
    .privacy-text ol {
        margin-left: 20px;
    }
}