/* 全局重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 通用区块样式 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    color: #333;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #d4574a;
}

.more-link {
    color: #d4574a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.more-link:hover {
    color: #b8453a;
}

/* 通用按钮样式 */
.cta-btn {
    display: inline-block;
    background: white;
    color: #C03D2D;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}