/* --- 基础布局与变量 --- */
.empowerme-page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 5%;
    font-family: 'Lora', serif;
    color: #4a5568;
}

.empowerme-section {
    margin-bottom: 80px;
}

/* --- 标题与正文排版 (已放大) --- */
.main-heading {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem; /* 从 2.2rem 放大 */
    color: #265c70; 
    margin-bottom: 24px;
}

.sub-heading {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem; /* 从 2rem 放大 */
    color: #a3a8c1; 
    margin-bottom: 30px;
    font-weight: 500;
}

p {
    font-size: 1.3rem; /* 基础段落从 1.1rem 放大 */
    line-height: 1.7;
    margin: 0;
}

/* --- 1 & 3: 纯文本区块 --- */
.intro-section p,
.learning-themes-section p {
    max-width: 900px;
}

/* --- 2: Course Structure 区块 --- */
.course-structure-section {
    display: flex;
    gap: 60px;
    align-items: center;
}

.course-content {
    flex: 1;
}

.custom-list {
    display: flex;
    flex-direction: column;
    gap: 36px; /* 稍微增加列表项间距以适应大字体 */
}

.list-item .item-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.item-header .dot {
    width: 12px;
    height: 12px;
    background-color: #265c70;
    border-radius: 50%;
    flex-shrink: 0;
}

.item-header h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem; /* 从 1.2rem 放大 */
    color: #265c70;
    margin: 0;
}

.list-item p {
    padding-left: 28px; 
    font-size: 1.2rem; /* 从 1rem 放大 */
    color: #6a7282;
}

.course-image {
    flex: 1;
}

.course-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 120px 120px 30px 30px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* --- 4: Testimonials 轮播区块 --- */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    scrollbar-width: none; 
    padding: 10px 0;
    width: 100%;
}

.carousel-track::-webkit-scrollbar {
    display: none; 
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px); 
    min-width: 300px; /* 稍微加宽卡片以适应更大的字体 */
    min-height: 280px;
    scroll-snap-align: start; 
    padding: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.testimonial-card:nth-child(odd) {
    background-color: #dfd3c3; 
}
.testimonial-card:nth-child(even) {
    background-color: #e8d5d1; 
}

.testimonial-card p {
    font-size: 1.3rem; /* 保证评价内容也放大 */
    font-style: italic; /* 增加斜体效果提升引用感（可选） */
}

/* 箭头按钮样式 */
.carousel-arrow {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #265c70;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.carousel-arrow:hover {
    background: #265c70;
    color: #ffffff;
}

.prev-arrow { left: -22px; }
.next-arrow { right: -22px; }

/* --- 5: 底部 CTA 区块 (保持原尺寸) --- */
.cta-section {
    text-align: center;
    padding-top: 40px;
}

.cta-section h2 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem; /* 保持不变 */
    color: #265c70;
    margin-bottom: 40px;
    line-height: 1.2;
}

.btn-courses {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 48px;
    background-color: #265c70;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem; /* 保持不变 */
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-courses:hover {
    background-color: #1a4252;
    transform: translateY(-2px);
}

@media (max-width: 800px) {
    .course-structure-section {
        flex-direction: column; 
    }
    
    .course-image {
        width: 100%;
        order: -1; 
    }

    .main-heading { font-size: 2.4rem; }
    .sub-heading { font-size: 2.2rem; }
    p { font-size: 1.15rem; }

    .cta-section h2 {
        font-size: 2.2rem; /* 保持不变 */
    }

    .testimonial-card {
        flex: 0 0 85%; 
    }
    
    .carousel-arrow {
        display: none;
    }
}