/* 轮播图样式 */
.magao-hero-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}


.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* 导航按钮 */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    font-size: 40px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #1e88e5;
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* 指示器 */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: #fff;
    width: 40px;
    border-radius: 8px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .magao-hero-slider {
        height: 450px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-text {
        font-size: 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
}

/* 课程区域样式 */
.courses-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.course-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.course-title {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.course-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.course-link {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.course-link:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* 成功案例区域样式 */
.success-stories {
    padding: 80px 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.story-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image::before {
    content: '🏆';
    position: absolute;
    font-size: 48px;
    opacity: 0.3;
}

.story-content {
    padding: 25px;
}

.story-title {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 12px;
}

.story-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.story-date {
    color: #95a5a5;
}

.story-category {
    background: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
}

/* 博客文章样式 */
.content-area {
    display: flex;
    gap: 40px;
    padding: 40px 0;
}

.posts-container {
    flex: 1;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #3498db;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #7f8c8d;
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

/* 分页样式 */
.pagination {
    margin-top: 50px;
    text-align: center;
}

.page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: white;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

/* 无文章样式 */
.no-posts {
    text-align: center;
    padding: 80px 20px;
    color: #7f8c8d;
}

.no-posts h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* 移动端菜单样式 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #666;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e9ecef;
    padding: 20px 0;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 10px;
}

.mobile-nav-menu a {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.mobile-nav-menu a:hover {
    background: #f8f9fa;
    color: #3498db;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu-container {
        display: none;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-area {
        flex-direction: column;
        gap: 20px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .course-card,
    .story-card {
        padding: 20px;
    }
}

/* 动画效果 */
.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 表单验证样式 */
.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.3) !important;
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* 工具提示样式 */
.tooltip {
    position: absolute;
    background: #2c3e50;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 1000;
    max-width: 200px;
    word-wrap: break-word;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #2c3e50;
}

/* 移动端菜单动画 */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

body.menu-open {
    overflow: hidden;
}

/* 懒加载效果 */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* 头部样式优化 */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.site-branding {
    transition: opacity 0.3s ease;
}

.site-branding:hover {
    opacity: 0.85;
}

.logo-box {
    transition: all 0.3s ease;
}

.logo-box:hover {
    transform: scale(1.05);
}

/* 导航菜单优化 */
.main-navigation a {
    position: relative;
    transition: color 0.3s ease;
    color: #111111;
    text-decoration: none;
    outline: none;
}

.main-navigation a:focus {
    outline: none;
    box-shadow: none;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e88e5;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a:focus::after {
    width: 100%;
}

.main-navigation a:hover,
.main-navigation a:focus {
    color: #1e88e5 !important;
}

/* 联系电话优化 */
.header-contact {
    transition: all 0.3s ease;
}

.header-contact:hover {
    opacity: 0.7;
}

/* Logo图片样式 */
.site-logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* PC端头部布局 - 确保logo在最左侧 */
@media (min-width: 769px) {
    .site-header .wp-block-group.alignwide,
    .site-header .alignwide {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .site-branding,
    .site-header .site-branding {
        order: 1 !important;
        flex: 0 0 auto !important;
        margin-right: auto !important;
    }
    
    .main-navigation,
    .wp-block-navigation {
        order: 2 !important;
        flex: 1 1 auto !important;
        justify-content: center !important;
    }
    
    .header-contact,
    .site-header .header-contact {
        order: 3 !important;
        flex: 0 0 auto !important;
        margin-left: auto !important;
    }
}

/* 头部响应式 - 强制布局 */
@media (max-width: 768px) {
    /* 强制父容器使用flex布局 */
    .site-header .wp-block-group.alignwide,
    .site-header .alignwide {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        display: flex !important;
        gap: 0 !important;
    }
    
    /* 强制导航菜单样式 */
    .main-navigation,
    .wp-block-navigation {
        order: 2 !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
        margin-left: auto !important;
    }
    
    /* 移动端导航展开时菜单居中 */
    .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
        text-align: center !important;
        width: 100% !important;
    }
    
    .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* 移动端隐藏电话号码 */
    .header-contact,
    .site-header .header-contact,
    .wp-block-group.header-contact {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
    }
    
    /* 强制logo样式 */
    .site-branding,
    .site-header .site-branding {
        order: 1 !important;
        flex: 0 0 auto !important;
        width: auto !important;
        margin: 0 !important;
    }
    
    /* 移动端logo优化 */
    .site-logo img {
        width: 130px !important;
        max-width: 130px;
    }
    
    /* 页脚logo优化 */
    .footer-logo img {
        width: 130px !important;
        max-width: 130px;
    }
}

/* 页脚样式优化 */
.footer-links a {
    color: #b0b0b0 !important;
    text-decoration: none !important;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
    outline: none;
}

.footer-links a:focus {
    outline: none;
    box-shadow: none;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #1e88e5 !important;
    padding-left: 5px;
}

/* 页脚logo样式 */
.footer-logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 页脚响应式 */
@media (max-width: 768px) {
    /* 页脚整体内边距优化 - 大幅减少 */
    footer .wp-block-group.alignfull {
        padding-top: var(--wp--preset--spacing--40) !important;
        padding-bottom: var(--wp--preset--spacing--20) !important;
    }
    
    /* 页脚列布局 - 强制flexbox并允许换行 */
    footer .wp-block-columns {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: var(--wp--preset--spacing--20) !important;
    }
    
    /* 第1列（Logo和联系）独占一行 */
    footer .wp-block-column:nth-child(1) {
        flex-basis: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0 !important;
        text-align: center !important;
    }
    
    /* 第2、3列（课程导航和关于我们）并排 */
    footer .wp-block-column:nth-child(2),
    footer .wp-block-column:nth-child(3) {
        flex-basis: calc(50% - 10px) !important;
        width: calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
        margin-bottom: 0 !important;
        text-align: center !important;
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
    }
    
    /* 第一列（Logo和联系信息）优化 */
    footer .wp-block-column:first-child .wp-block-group {
        margin-bottom: var(--wp--preset--spacing--10) !important;
    }
    
    /* 移动端页脚logo - 缩小 */
    .footer-logo {
        text-align: center;
        margin-bottom: 0 !important;
    }
    
    .footer-logo img {
        width: 100px !important;
        max-width: 100px;
        margin: 0 auto !important;
    }
    
    /* 页脚简介文字 - 缩小字号和间距 */
    footer .wp-block-column p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: var(--wp--preset--spacing--10) !important;
    }
    
    /* 联系方式 - 缩小间距 */
    footer .wp-block-group {
        justify-content: center !important;
        margin-bottom: var(--wp--preset--spacing--10) !important;
    }
    
    /* 页脚标题 - 缩小字号和间距 */
    footer .wp-block-heading {
        text-align: center !important;
        font-size: 0.95rem !important;
        margin-bottom: var(--wp--preset--spacing--10) !important;
    }
    
    /* 页脚链接列表 - 减少行高 */
    footer .footer-links {
        text-align: center !important;
        list-style: none !important;
        padding-left: 0 !important;
        line-height: 1.8 !important;
        font-size: 0.8rem !important;
    }
    
    footer .footer-links li {
        text-align: center !important;
        margin-bottom: 3px !important;
    }
    
    /* 第2、3列的标题和链接进一步优化 */
    footer .wp-block-column:nth-child(2) .wp-block-heading,
    footer .wp-block-column:nth-child(3) .wp-block-heading {
        font-size: 0.9rem !important;
        margin-bottom: 8px !important;
    }
    
    footer .wp-block-column:nth-child(2) .footer-links,
    footer .wp-block-column:nth-child(3) .footer-links {
        font-size: 0.75rem !important;
        line-height: 1.7 !important;
    }
    
    /* 底部版权区域 - 缩小字号 */
    footer .wp-block-group.alignwide {
        flex-direction: column !important;
        text-align: center !important;
        gap: 3px !important;
    }
    
    footer .wp-block-group.alignwide p {
        font-size: 0.75rem !important;
        margin: 0 !important;
    }
    
    /* 分隔线优化 - 减少间距 */
    footer .wp-block-separator {
        margin-top: var(--wp--preset--spacing--20) !important;
        margin-bottom: var(--wp--preset--spacing--20) !important;
    }
    
    /* 隐藏"服务支持"栏目以节省空间 */
    footer .wp-block-column:nth-child(4) {
        display: none !important;
    }
    
    /* ========== 移动端页面内容优化 ========== */
    
    /* 主内容区域添加左右边距 */
    main .wp-block-group {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* 封面区域（Hero Banner）优化 */
    .wp-block-cover {
        min-height: 300px !important;
        padding-top: var(--wp--preset--spacing--50) !important;
        padding-bottom: var(--wp--preset--spacing--50) !important;
    }
    
    /* 大标题优化 */
    .wp-block-cover h1,
    main h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    /* 副标题/描述文字优化 */
    .wp-block-cover p,
    .wp-block-cover__inner-container p {
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
    
    /* 按钮组优化 */
    .wp-block-buttons {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        justify-content: center !important;
    }
    
    .wp-block-button .wp-block-button__link {
        font-size: 14px !important;
        padding: 8px 20px !important;
    }
    
    /* 二级标题优化 */
    main h2 {
        font-size: 24px !important;
        margin-top: 30px !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }
    
    /* 三级标题优化 */
    main h3 {
        font-size: 20px !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
    }
    
    /* 四级标题优化 */
    main h4 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    
    /* 段落优化 */
    main p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
    
    /* 列表优化 */
    main ul,
    main ol {
        font-size: 15px !important;
        line-height: 1.7 !important;
        padding-left: 25px !important;
    }
    
    main li {
        margin-bottom: 8px !important;
    }
    
    /* 区块容器优化 */
    .wp-block-group.alignwide,
    .wp-block-group.alignfull {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* 列布局优化 */
    .wp-block-columns {
        gap: 20px !important;
    }
    
    .wp-block-column {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* 内容区域上下边距 */
    main > .wp-block-group {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    /* 图片优化 */
    main img {
        height: auto !important;
        max-width: 100% !important;
    }
    
    /* 表格优化 */
    main table {
        font-size: 14px !important;
        width: 100% !important;
    }
    
    main th,
    main td {
        padding: 8px !important;
    }
    
    /* ========== 首页特殊优化 ========== */
    
    /* 轮播图移动端优化 */
    .magao-hero-slider {
        height: 400px !important;
        min-height: 400px !important;
    }
    
    /* 轮播图导航按钮移动端隐藏（只保留指示点） */
    .slider-nav {
        display: none !important;
    }
    
    /* 政策卡片优化 */
    .policy-card {
        padding: 25px 20px !important;
        margin-bottom: 20px !important;
    }
    
    .policy-card h3 {
        font-size: 18px !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }
    
    .policy-list li {
        font-size: 14px !important;
        line-height: 1.7 !important;
        margin-bottom: 10px !important;
    }
    
    /* 成功案例卡片优化 */
    .success-card {
        padding: 20px 15px !important;
        margin-bottom: 20px !important;
    }
    
    .success-card h4 {
        font-size: 17px !important;
        margin-bottom: 10px !important;
    }
    
    .success-card p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    /* 分隔线优化 */
    .title-separator {
        width: 50px !important;
        margin-bottom: 30px !important;
    }
    
    /* 首页区块内边距优化 */
    .wp-block-group.alignfull {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* 首页列布局（政策卡片等）强制单列 */
    .wp-block-columns {
        flex-direction: column !important;
    }
    
    .wp-block-column {
        flex-basis: 100% !important;
        width: 100% !important;
    }
    
    /* 课程卡片优化 */
    .course-card {
        padding: 25px 20px !important;
        margin-bottom: 20px !important;
    }
    
    .course-icon {
        font-size: 36px !important;
        margin-bottom: 15px !important;
    }
    
    .course-card h3 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    
    .course-card p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    /* 特色卡片优化 */
    .feature-card {
        padding: 25px 20px !important;
        margin-bottom: 20px !important;
    }
    
    .feature-icon {
        font-size: 36px !important;
        margin-bottom: 15px !important;
    }
    
    .feature-card h3 {
        font-size: 18px !important;
    }
    
    .feature-card p {
        font-size: 14px !important;
    }
}

