/* 
【视觉与交互风格】
主色调：活力阳光橙(#FF9500)
辅助色：草地清新绿(#4CD964)
背景色：天空浅蓝(#F0F8FF)
卡片色：圆角柔和白(rgba(255,255,255,0.95))
正文色：教育深蓝(#1D3557)
*/

:root {
    --primary-color: #FF9500;
    --secondary-color: #4CD964;
    --bg-color: #F0F8FF;
    --card-color: rgba(255, 255, 255, 0.95);
    --text-color: #1D3557;
    --border-radius: 20px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 导航栏 */
header {
    background-color: var(--card-color);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.cb10fa554 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.cb10fa554 img {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.c9ff72ae2 {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.c9ff72ae2:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.4);
}

/* 页面通用布局 */
.c4f8011cf {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

section {
    margin-bottom: 60px;
}

h1, h2, h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

/* 卡片样式 */
.c08235622 {
    background: var(--card-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

/* 动效：鼠标悬停课程卡片时，卡片弹跳并撒出星星粒子 */
.cac8fc9c8 {
    position: relative;
    overflow: hidden;
}

.cac8fc9c8:hover {
    transform: translateY(-10px) scale(1.02);
    cursor: pointer;
}

/* 页脚 */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 40px 5%;
    text-align: center;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin-top: 60px;
}

footer a {
    color: var(--secondary-color);
}

/* 响应式 */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}
