.nav a.menu-reviews {
    color: var(--orange-color);
}

/* REVIEWS */
.review-header {
    margin-top: 30px;
}

.review-header .title {
    font-size: var(--largest-font-size);
    font-weight: var(--large-font-weight);
    text-align: center;
}

.review-header .description {
    font-size: var(--large-font-size);
    font-weight: var(--normal-font-weight);
    text-align: center;
}

.review-header .value-card {
    border: 1px solid #f2e9d9;
    padding: 25px;
    border-radius: var(--normal-border-radius);
    margin-top: 30px;
    background-color: var(--gold-light-color);
}

.review-header .value-card h3 {
    margin-top: 0;
    font-size: var(--larger-font-size);
    color: var(--navy-color);
}

.review-header .value-card ul {
    list-style: "✓ ";
    color: var(--navy-color);
    padding: 0;
    padding-left: 25px;
    margin: 0;
}

.review-header .value-card li {
    border-radius: var(--normal-border-radius);
    font-size: var(--large-font-size);
    padding-left: 10px;
}

.review-header .value-card li b {
    font-size: var(--large-font-size);
}

/* PARENT REVIEWS */
.reviews-section {
    margin-top: 30px;
}

.reviews-section .sub-title,
.comparison-section .sub-title {
    font-size: var(--larger-font-size);
}

.reviews-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.reviews-grid .review-card {
    padding: 10px 20px 20px;
    background: var(--panel-bg-color);
    box-shadow: var(--shadow);
    border-radius: var(--normal-border-radius);
}

.reviews-grid .review-card p {
    font-size: var(--larger-font-size);
}

.reviews-grid .review-card small {
    font-size: var(--large-font-size);
}

/* STUDENT REVIEWS or COMPARISON */
.comparison-section {
    margin-top: 30px;
    display: block;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.comp-box {
    background: var(--panel-bg-color);
    box-shadow: var(--shadow);
    border-radius: var(--normal-border-radius);
}

.comp-box header {
    padding: 15px;
    text-align: center;
    font-size: 140%;
    background: var(--gold-light-color);
    font-weight: var(--large-font-weight);
}

.comp-box.gray header {
    background: #f0f0f0;
}

.comp-box.gold header {
    color: var(--gold-color);
}

.comp-box ul {
    list-style: "✓";
    margin: 0;
    padding: 20px;
    margin-left: 20px;
}

.comp-box ul li {
    font-weight: var(--normal-font-weight);
    font-size: var(--large-font-size);
    padding-left: 10px;
}

.why-section {
    margin-top: 30px;
    text-align: center;
}

.why-section h2 {
    font-size: var(--larger-font-size);
}

.why-section .title {
    font-size: var(--large-font-size);
}

/* 2. 手机端样式分割点 (屏幕宽度 < 768px) */
@media screen and (max-width: 767px) {
    .contact-details {
        grid-template-columns: repeat(1, 1fr);
    }

    .comparison-section {
        display: none;
    }

    .review-header .value-card {
        padding: 10px;
    }

    .review-header .value-card ul {
        padding-left: 10px;

    }

    .reviews-grid {
        gap: 10px;
    }

    .reviews-grid .review-card {
        padding: 10px;
    }

    .reviews-grid .review-card p{
        margin-top: 0;
        font-size: var(--large-font-size);
    }
}