        /* 基础样式 */
        :root {
            --primary: #4361ee;
            --secondary: #3f37c9;
            --accent: #4cc9f0;
            --success: #4ade80;
            --warning: #f59e0b;
            --danger: #ef4444;
            --light: #f8f9fa;
            --dark: #1e293b;
            --gray: #64748b;
            --card-bg: #ffffff;
            --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }

        body {
            font-family: 'Noto Sans SC', 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
            color: var(--dark);
            min-height: 100vh;
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 100px;
        }

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

        /* ============= 从1.4文件复制的导航栏样式 ============= */
        /* 整合后的导航栏样式 */
        .detailed-navbar {
            background-color: #fdfdfe;
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .detailed-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            min-height: 100px;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }
        
        /* Logo 区域 */
        .detailed-logo {
            display: flex;
            align-items: center;
            gap: 18px;
            text-decoration: none;
            flex-shrink: 0;
        }
        
        .detailed-logo-icon {
            width: 60px;
            height: 60px;
            background: #f5f7ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 5px 15px rgba(92, 124, 250, 0.15);
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .detailed-logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 12px;
        }
        
        .detailed-logo:hover .detailed-logo-icon {
            transform: rotate(10deg) scale(1.05);
            box-shadow: 0 8px 20px rgba(92, 124, 250, 0.25);
        }
        
        .detailed-logo-text {
            font-size: 32px;
            font-weight: 800;
            color: #4a5568;
            letter-spacing: 0.8px;
            white-space: nowrap;
        }
        
        .detailed-logo-text span {
            background: linear-gradient(90deg, #5c7cfa, #4263eb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* 导航菜单 */
        .detailed-nav-menu {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: nowrap;
            overflow-x: auto;
            padding: 5px 0;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        .detailed-nav-menu::-webkit-scrollbar {
            display: none;
        }
        
        .detailed-nav-item {
            position: relative;
            padding: 5px 0;
            flex-shrink: 0;
        }
        
        .detailed-nav-link {
            text-decoration: none;
            color: #4a5568;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
            padding: 15px 20px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }
        
        /* 图标样式 */
        .detailed-nav-icon {
            display: inline-block;
            width: 24px;
            text-align: center;
            margin-right: 10px;
            font-size: 18px;
            color: #5c7cfa;
            transition: color 0.3s ease;
        }
        
        .detailed-nav-link:hover .detailed-nav-icon {
            color: currentColor;
        }
        
        .detailed-nav-item.detailed-active .detailed-nav-link .detailed-nav-icon {
            color: white;
        }
        
        /* 选中项样式 */
        .detailed-nav-item.detailed-active .detailed-nav-link {
            background: linear-gradient(135deg, #5c7cfa 0%, #4263eb 100%);
            color: white !important;
            box-shadow: 0 5px 15px rgba(92, 124, 250, 0.25);
        }
        
        .detailed-nav-link:hover {
            color: #5c7cfa;
        }
        
        .detailed-nav-link::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #5c7cfa, #4263eb);
            border-radius: 2px;
            transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        .detailed-nav-link:hover::after {
            width: 60%;
        }
        
        /* 汉堡菜单 - 移到左边 */
        .detailed-hamburger {
            display: none;
            cursor: pointer;
            width: 40px;
            height: 30px;
            position: relative;
            z-index: 100;
            order: -1;
            margin-right: 15px;
        }
        
        .detailed-hamburger span {
            display: block;
            position: absolute;
            height: 4px;
            width: 100%;
            background: #5c7cfa;
            border-radius: 4px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: all 0.3s ease;
        }
        
        .detailed-hamburger span:nth-child(1) {
            top: 0;
        }
        
        .detailed-hamburger span:nth-child(2) {
            top: 13px;
            width: 85%;
        }
        
        .detailed-hamburger span:nth-child(3) {
            top: 26px;
        }
        
        /* 汉堡菜单激活状态 */
        .detailed-hamburger.detailed-active span {
            background: #4263eb;
        }
        
        .detailed-hamburger.detailed-active span:nth-child(1) {
            top: 13px;
            transform: rotate(135deg);
        }
        
        .detailed-hamburger.detailed-active span:nth-child(2) {
            opacity: 0;
            left: -30px;
        }
        
        .detailed-hamburger.detailed-active span:nth-child(3) {
            top: 13px;
            transform: rotate(-135deg);
        }
        
        /* 移动端菜单样式 */
        @media (max-width: 992px) {
            .detailed-nav-container {
                padding: 0 30px;
                justify-content: flex-start;
                position: relative;
                min-height: 80px;
            }
            
            .detailed-hamburger {
                display: block;
                margin-right: 15px;
                order: -1;
            }
            
            .detailed-nav-menu {
                position: absolute;
                top: 100%; 
                left: 0;
                width: 100%;
                flex-direction: column;
                background: #fdfdfe;
                padding: 15px 0;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                            opacity 0.4s ease;
                z-index: 99;
                border-radius: 0 0 15px 15px;
                gap: 0;
                opacity: 0;
                visibility: hidden;
                border-top: 1px solid rgba(92, 124, 250, 0.15);
                overflow: visible;
            }
            
            .detailed-nav-menu.detailed-active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .detailed-nav-item {
                width: 100%;
                text-align: center;
                padding: 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .detailed-nav-item:last-child {
                border-bottom: none;
            }
            
            .detailed-nav-link {
                padding: 18px 25px;
                margin: 0 20px;
                border-radius: 8px;
                transition: all 0.2s ease;
                justify-content: center;
            }
            
            .detailed-nav-link:hover {
                background: rgba(92, 124, 250, 0.08);
            }
            
            .detailed-nav-link::after {
                display: none;
            }
            
            .detailed-nav-item.detailed-active .detailed-nav-link {
                margin: 0 20px;
                box-shadow: 0 4px 12px rgba(92, 124, 250, 0.2);
            }
            
            /* 移动端图标显示优化 */
            .detailed-nav-icon {
                display: inline-block;
                margin-right: 12px;
                font-size: 20px;
            }
            
            .detailed-nav-link:active {
                transform: scale(0.96);
            }
            
            /* 调整body的padding-top */
            body {
                padding-top: 0;
            }
            
            .detailed-logo {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                margin: 0;
            }
            
            /* 移动端LOGO尺寸优化 - 缩小LOGO */
            .detailed-logo-icon {
                width: 45px; /* 原50px */
                height: 45px; /* 原50px */
            }
            
            .detailed-logo-text {
                font-size: 24px; /* 原28px */
            }
        }
        
        /* 修复移动端菜单高度问题 */
        @media (max-width: 992px) {
            .detailed-navbar {
                overflow: visible;
                transition: border-radius 0.3s ease;
            }
            
            .detailed-navbar.detailed-menu-expanded {
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
            }
        }

        /* 更小屏幕尺寸调整 */
        @media (max-width: 768px) {
            .detailed-logo-icon {
                width: 40px; /* 进一步缩小 */
                height: 40px;
            }
            
            .detailed-logo-text {
                font-size: 20px; /* 进一步缩小 */
            }
        }
        
        @media (max-width: 576px) {
            .detailed-nav-container {
                min-height: 70px; /* 减小导航栏高度 */
            }
            
            .detailed-logo-icon {
                width: 36px; /* 再次缩小 */
                height: 36px;
            }
            
            .detailed-logo-text {
                font-size: 18px; /* 再次缩小 */
            }
        }
        
        @media (max-width: 400px) {
            .detailed-logo-text {
                display: none; /* 在超小屏幕上隐藏文字 */
            }
            
            .detailed-logo {
                gap: 0; /* 移除图标和文字间距 */
            }
            
            .detailed-hamburger {
                margin-right: 10px; /* 调整间距 */
            }
        }
        /* ============= 导航栏样式结束 ============= */

        .back-to-top {
            position: fixed;
            bottom: 110px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border: none;
            z-index: 999;
            transition: all 0.3s ease;
            opacity: 1;
            visibility: hidden;
            transform: translateY(20px);
        }
        
        .back-to-top.visible {
            visibility: visible;
            transform: translateY(0);
        }
        
        .consult-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            padding: 14px 24px;
            border-radius: 30px;
            background: linear-gradient(135deg, #0b8043, #0a6e3a);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(11, 128, 67, 0.5);
            border: none;
            z-index: 998;
            transition: all 0.3s ease;
            overflow: hidden;
            animation: pulse-green 2s infinite;
        }
        
        .consult-button i {
            margin-right: 8px;
            font-size: 18px;
        }
        
        /* 顶部通栏设计 */
        .hero-banner {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
            box-shadow: 0 5px 30px rgba(67, 97, 238, 0.3);
        }

        .hero-banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 Q50,10 100,0 L100,100 Q50,90 0,100 Z" fill="white" opacity="0.05"/></svg>');
            background-size: cover;
            z-index: 1;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-logo {
            font-size: 70px;
            color: white;
            margin-bottom: 20px;
            text-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 40px;
            font-weight: 300;
            padding: 0 25px;
        }

        .stats-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            padding: 20px 40px;
            border-radius: 15px;
            min-width: 180px;
            flex: 1;
            min-width: 150px;
            max-width: 220px;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* 新增的三个卡片 */
        .info-cards-container {
            display: flex;
            justify-content: space-between;
            gap: 25px;
            margin-bottom: 60px;
        }

        .info-card {
            flex: 1;
            background: var(--card-bg);
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .info-card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 28px;
        }

        .info-card-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .info-card-text {
            color: var(--gray);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* 卡片网格布局 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        /* 卡片设计 */
        .event-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .card-header {
            padding: 25px 25px 15px;
            position: relative;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .card-category {
            display: inline-flex;
            align-items: center;
            padding: 6px 15px;
            border-radius: 20px;
            background: rgba(67, 97, 238, 0.1);
            color: var(--primary);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .card-category i {
            margin-right: 8px;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .card-content {
            padding: 0 25px 25px;
            flex-grow: 1;
        }

        .card-description {
            color: var(--gray);
            margin-top: 15px;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .card-footer {
            padding: 20px 25px;
            background: rgba(241, 245, 249, 0.6);
            border-top: 1px solid #e2e8f0;
        }

        .deadline-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
        }

        .deadline-info {
            flex-grow: 1;
        }

        .deadline-label {
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }

        .deadline-label i {
            color: var(--warning);
            font-size: 1.2rem;
        }

        .deadline-text {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark);
            background: rgba(67, 97, 238, 0.08);
            padding: 10px 15px;
            border-radius: 10px;
            display: inline-block;
            margin-top: 5px;
        }

        /* 成果展示模块 */
        .achievements-section {
            padding: 40px 0;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 40px;
            color: var(--dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .achievements-container {
            display: flex;
            overflow: hidden;
            position: relative;
            height: 320px;
        }

        .achievements-track {
            display: flex;
            animation: scroll 30s linear infinite;
        }

        .achievement-card {
            flex: 0 0 auto;
            width: 280px;
            margin: 0 15px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            transition: var(--transition);
        }

        .achievement-card:hover {
            transform: translateY(-5px);
        }

        .achievement-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .achievement-info {
            padding: 20px;
            background: white;
        }

        .achievement-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .achievement-award {
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 500;
        }

        /* 常见问题模块 */
        .faq-section {
            padding: 40px 0;
            margin-bottom: 80px;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-question {
            padding: 20px 25px;
            background: linear-gradient(135deg, #f5f7ff 0%, #eef2ff 100%);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.2rem;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, #e6e9ff 0%, #e0e7ff 100%);
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: white;
            color: var(--gray);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            padding: 20px 25px;
            max-height: 300px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* 页脚设计 */
        footer {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 2.5rem 0 1.5rem;
        }

        .copyright {
            padding-bottom: 15px;
            border-top: 0px solid #444;
            font-size: 0.85rem;
            color: white;
            text-align: center;
        }

        /* 遮罩层样式 */
        .competition-mask {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 500px;
            background: linear-gradient(to top, #f5f7fa, rgba(245, 247, 250, 0.8), transparent);
            z-index: 5;
            pointer-events: none;
        }
        
        .consult-more-btn {
            position: absolute;
            bottom: 200px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 12px 30px;
            min-width: 120px;
            width: auto;
            border-radius: 30px;
            font-weight: bold;
            font-size: 16px;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(66, 99, 235, 0.4);
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .consult-more-btn:hover {
            transform: translateX(-50%) scale(1.05);
            box-shadow: 0 7px 20px rgba(66, 99, 235, 0.6);
        }
        
        .competition-container {
            position: relative;
            overflow: hidden;
            /* 桌面端显示2行卡片（6张） */
            max-height: 1400px;
        }
        
        /* 动画 */
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        @keyframes pulse-green {
            0% { box-shadow: 0 0 0 0 rgba(11, 128, 67, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(11, 128, 67, 0); }
            100% { box-shadow: 0 0 0 0 rgba(11, 128, 67, 0); }
        }

        /* 响应式设计 */
        @media (max-width: 1200px) {
            .card-grid {
                grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
            }
        }

        @media (max-width: 992px) {
            body {
                padding-top: 80px;
            }
            
            .hero-banner {
                padding: 60px 0;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .stat-item {
                padding: 15px 30px;
                min-width: 140px;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
            
            .info-cards-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .achievements-section {
                padding: 30px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            /* 移动端显示3张卡片 */
            .competition-container {
                max-height: 1200px;
            }
            
            .consult-more-btn {
                width: 60%;
                max-width: 65%;
                padding: 12px 20px;
                font-size: 15px;
                        margin: 0 auto; /* 按钮水平居中 */
        display: block; /* 使margin:auto生效 */
            }
        }

        @media (max-width: 768px) {
            .hero-banner {
                padding: 50px 0;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 30px;
                padding: 0 30px;
            }
            
            .card-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .achievements-container {
                height: 280px;
            }
            
            .achievement-card {
                width: 250px;
            }
            
            .achievement-image {
                height: 180px;
            }
            
            /* 移动端显示3张卡片 */
            .competition-container {
                max-height: 1200px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.9rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                padding: 0 20px;
            }
            
            .card-header {
                padding: 20px 20px 15px;
            }
            
            .card-title {
                font-size: 1.3rem;
            }
            
            .card-content {
                padding: 0 20px 20px;
            }
            
            .card-footer {
                padding: 15px 20px;
            }
            
            .deadline-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .stats-container {
                flex-wrap: nowrap;
                overflow-x: auto;
                justify-content: flex-start;
                padding-bottom: 10px;
                -ms-overflow-style: none;
                scrollbar-width: none;
            }
            
            .stats-container::-webkit-scrollbar {
                display: none;
            }
            
            .stat-item {
                flex: 0 0 auto;
                min-width: 120px;
                padding: 12px 15px;
                margin: 0 5px;
            }
            
            .stat-number {
                font-size: 1.7rem;
            }
            
            .stat-label {
                font-size: 0.95rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .consult-more-btn {
                width: 80%;
                max-width: 90%;
            }
        }