        /* 基础样式 */
        :root {
            --primary: #e53935;
            --primary-dark: #c62828;
            --secondary: #f5f5f5;
            --accent: #ffcd00;
            --dark: #333;
            --light: #fff;
            --gray: #666;
            --light-gray: #f8f9fa;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background: #f9f9f9;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            font-size: 16px;
            padding-top: 100px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
            border: 2px solid transparent;
            margin: 5px;
        }
        
        .btn:hover {
            background: #c62828;
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }
        
        .btn-lg {
            padding: 15px 35px;
            font-size: 1.1rem;
            margin: 20px auto;
        }
        
        .btn-green {
            background: linear-gradient(135deg, #0b8043, #0a6e3a);
            box-shadow: 0 5px 20px rgba(11, 128, 67, 0.5);
        }
        
        .btn-green:hover {
            background: linear-gradient(135deg, #0a6e3a, #095e30);
        }
        
        section {
            padding: 0.3rem 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        
        .section-header h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: var(--accent);
            border-radius: 3px;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 800px;
            margin: 1.5rem auto 0;
            line-height: 1.7;
        }
        
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.3), transparent);
            margin: 2.5rem auto;
            max-width: 800px;
        }
        
        /* 导航栏样式 */
        .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%;
        }
        
        .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: 0;
            }
            
            .detailed-logo {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                margin: 0;
            }
            
            .detailed-logo-icon {
                width: 50px;
                height: 50px;
            }
            
            .detailed-logo-text {
                font-size: 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;
            }
        }
        
        /* Hero Section */
        .hero {
            margin-top: 0;
            padding: 4rem 0 2rem;
            background: linear-gradient(135deg, rgba(229, 57, 53, 0.1), rgba(255, 205, 0, 0.05));
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            line-height: 1.3;
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.2rem;
            color: #555;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* 卡片样式 */
        .content-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            margin-bottom: 30px;
        }
        
        .card-header {
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            padding: 22px 25px;
            position: relative;
        }
        
        .card-header h3 {
            font-size: 1.5rem;
            padding-right: 40px;
        }
        
        .card-icon {
            position: absolute;
            top: 50%;
            right: 25px;
            transform: translateY(-50%);
            font-size: 2rem;
            opacity: 0.3;
        }
        
        .card-content {
            padding: 30px;
        }
        
        .card-content h3 {
            color: var(--primary);
            margin-bottom: 18px;
            font-size: 1.4rem;
            position: relative;
            padding-bottom: 12px;
        }
        
        .card-content h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .card-content p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: var(--gray);
            line-height: 1.7;
        }
        
        .card-content ul, .card-content ol {
            padding-left: 25px;
            margin-bottom: 25px;
        }
        
        .card-content li {
            margin-bottom: 12px;
            padding-left: 10px;
            font-size: 1.05rem;
            line-height: 1.6;
        }
        
        .card-content li::before {
            content: "•";
            color: var(--primary);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
            font-size: 1.2rem;
        }
        
        /* 奖章卡片 */
        .badges-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 1.5rem;
        }
        
        .badge-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 5px solid var(--primary);
        }
        
        .badge-header {
            background: var(--light-gray);
            color: var(--dark);
            padding: 22px 20px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }
        
        .badge-icon {
            font-size: 2.8rem;
            margin-bottom: 18px;
            color: var(--primary);
        }
        
        .badge-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .badge-level {
            font-size: 1rem;
            color: var(--gray);
            font-weight: 500;
        }
        
        .badge-content {
            margin: 25px;
            padding: 25px;
        }
        
        .badge-content h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.25rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .badge-content h4::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .badge-content ul {
            padding-left: 22px;
            margin-bottom: 20px;
        }
        
        .badge-content li {
            margin-bottom: 12px;
            font-size: 1.05rem;
            line-height: 1.6;
        }
        
        /* 星级章展示 */
        .stars-section {

            padding: 4rem 0;
            position: relative;
        }
        
        .stars-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 15px;

            opacity: 0.15;
        }
        
        .stars-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
            margin: 2.5rem 0;
        }
        
        .star-card {
            flex: 1;
            min-width: 220px;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(229, 57, 53, 0.1);
        }
        
        .star-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .star-header {
            padding: 25px 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }
        
        .star-img {
            width: 100px;
            height: 100px;
            margin: 0 auto 15px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            border: 3px solid #fff;
        }
        
        .star-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .star-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--primary);
        }
        
        .star-level {
            font-size: 1.1rem;
            color: var(--gray);
            font-weight: 600;
        }
        
        .star-content {
            padding: 20px;
            background: white;
        }
        
        .star-content p {
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 0;
        }
        
        /* 星级比例卡片 */
        .ratio-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 3rem 0;
        }
        
        .ratio-card {
            flex: 1;
            min-width: 200px;
            background: white;
            border-radius: 16px;
            padding: 25px;
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 5px solid var(--primary);
            transition: all 0.3s ease;
        }
        
        .ratio-card:hover {
            transform: translateY(-5px);
        }
        
        .ratio-card.highlight {
            background: #fffde7;
            border-top: 5px solid #ffcd00;
            position: relative;
            transform: scale(1.05);
            z-index: 2;
        }
        
        .ratio-card.highlight::after {
            content: "最高荣誉";
            position: absolute;
            top: -12px;
            right: 15px;
            background: #ffcd00;
            color: #333;
            font-size: 0.8rem;
            font-weight: bold;
            padding: 5px 12px;
            border-radius: 20px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        }
        
        .ratio-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 18px;
        }
        
        .ratio-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1;
        }
        
        .ratio-label {
            font-size: 1rem;
            color: var(--gray);
            font-weight: 500;
        }
        
        /* 争章流程 */
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin: 2.5rem 0;
        }
        
        .step-card {
            background: white;
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: var(--shadow);
            text-align: left;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            z-index: 1;
        }
        
        .step-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(229, 57, 53, 0.1);
            border-radius: 50%;
            margin-top: 10px;
        }
        
        .step-card h3 {
            margin-bottom: 18px;
            color: var(--primary);
            font-size: 1.4rem;
            position: relative;
            padding-bottom: 12px;
        }
        
        .step-card h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .step-card p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 1.05rem;
            margin-bottom: 15px;
        }
        
        .step-card ul {
            padding-left: 25px;
            margin-top: 10px;
        }
        
        .step-card li {
            margin-bottom: 12px;
            font-size: 1.05rem;
            line-height: 1.6;
        }
        
        /* 丰富内容样式 */
        .rich-content {
            padding: 15px 0;
        }
        
        .rich-content h4 {
            color: var(--primary);
            margin: 20px 0 15px;
            font-size: 1.3rem;
            position: relative;
            padding-left: 20px;
        }
        
        .rich-content h4::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 25px;
            background: var(--accent);
            border-radius: 4px;
        }
        
        .rich-content p {
            margin-bottom: 18px;
            line-height: 1.75;
            color: #444;
            font-size: 1.05rem;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 100%;
            margin: 2rem auto 0;
        }
        
        .faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .faq-question {
            padding: 22px 25px;
            background: var(--light-gray);
            color: var(--dark);
            font-weight: 700;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .faq-question i {
            transition: var(--transition);
            font-size: 1.2rem;
            color: var(--primary);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            font-size: 1.05rem;
            line-height: 1.7;
        }
        
        .faq-item.active .faq-answer {
            padding: 25px;
            max-height: 1000px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* 咨询按钮 */
        .consult-section {
            text-align: center;
            padding: 40px 0;
            background: linear-gradient(135deg, rgba(229, 57, 53, 0.05), rgba(255, 205, 0, 0.05));
            border-radius: 16px;
            margin: 3rem 0;
        }
        
        .consult-section h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .consult-section p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.7;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 3.5rem 0 2rem;
            margin-top: 4rem;
        }

        .copyright {
            padding-bottom: 15px;
            border-top: 0px solid #444;
            font-size: 0.85rem;
            color: white;
            text-align: center;
        }
        
        /* 回到顶部按钮 */
        .back-to-top {
            position: fixed;
            bottom: 110px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #5c7cfa 0%, #4263eb 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);
        }
        
        .back-to-top:hover {
            background: linear-gradient(135deg, #5c7cfa 0%, #4263eb 100%);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            transform: translateY(-3px);
        }
        
        /* 报名咨询按钮 */
        .consult-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            padding: 16px 28px;
            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: 10px;
            font-size: 18px;
        }
        
        .consult-button:hover {
            transform: scale(1.05);
            box-shadow: 0 7px 25px rgba(11, 128, 67, 0.7);
            animation: none;
        }
        
        /* 绿色脉冲动画 */
        @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: 992px) {
            .consult-button {
                padding: 14px 22px;
                font-size: 15px;
                bottom: 20px;
                right: 20px;
            }
            
            .back-to-top {
                width: 45px;
                height: 45px;
                font-size: 18px;
                bottom: 90px;
                right: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 1.5rem 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .btn {
                display: block;
                width: 100%;
                max-width: 300px;
                margin: 10px auto;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .card-header h3 {
                font-size: 1.3rem;
            }
            
            .card-content h3 {
                font-size: 1.3rem;
            }
            
            .badge-name {
                font-size: 1.3rem;
            }
            
            .stars-container {
                flex-direction: column;
            }
            
            .ratio-container {
                flex-direction: column;
            }
            
            .ratio-card.highlight {
                transform: scale(1);
            }
            
            .star-card, .ratio-card {
                min-width: 100%;
            }
            
            .step-card {
                padding: 30px 20px;
            }
            
            .step-icon {
                font-size: 2.5rem;
            }
            
            .step-card h3 {
                font-size: 1.3rem;
            }
            
            .faq-question {
                padding: 18px 20px;
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 576px) {
            body {
                padding-top: 80px;
            }
            
            .hero {
                padding: 2rem 0;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-header h2 {
                font-size: 1.6rem;
            }
            
            .card-header h3 {
                font-size: 1.2rem;
            }
            
            .card-content h3 {
                font-size: 1.2rem;
            }
            
            .badge-name {
                font-size: 1.2rem;
            }
            
            .star-name {
                font-size: 1.3rem;
            }
            
            .consult-button {
                padding: 12px 18px;
                font-size: 14px;
            }
        }