 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: #fafafa;
            color: #333;
        }

        .hero {
            text-align: center;
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 700;
            color: #22c55e;
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .hero-title img {
            width: 56px;
            height: 56px;
        }

        .hero-description {
            font-size: 18px;
            color: #666;
            line-height: 2;
            margin-bottom: 10px;
        }

        .hero .btn {
            display: inline-block;
            padding: 12px 48px;
            font-size: 16px;
            border-radius: 24px;
            margin-top: 40px;
        }

        .stats {
            display: flex;
            justify-content: center;
            gap: 32px; 
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-card {
            background-color: #fff;
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 32px 48px;
            text-align: center;
            min-width: 160px;
            transition: box-shadow 0.3s;
        }

        .stat-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .stat-value {
            font-size: 36px;
            font-weight: 700;
            color: #22c55e;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 12px;
            color: #999;
        }

        .comparison {
            padding: 60px 20px;
            background-color: #fff;
            margin-top: 40px;
        }

        .comparison-title {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            text-align: center;
            margin-bottom: 16px;
        }

        .comparison-subtitle {
            font-size: 14px;
            color: #999;
            text-align: center;
            margin-bottom: 8px;
        }

        .scroll-hint {
            font-size: 12px;
            color: #ccc;
            text-align: center;
            margin-bottom: 32px;
        }

        .table-wrapper {
            overflow-x: auto;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 12px;
            border: 1px solid #eee;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }

        .comparison-table {
            width: 100%;
            background-color: #fff;
            display: grid;
            grid-template-columns: repeat(7, minmax(100px, auto));
        }

        .table-header {
            background-color: #f8f9fa;
            border-bottom: 1px solid #eee;
            display: contents;
        }

        .table-body {
            display: contents;
        }

        .table-row {
            display: contents;
        }

        .table-row:hover > .table-cell {
            background-color: #fafafa;
        }

        .table-cell {
            padding: 26px 20px;
            font-size: 13px;
            color: #333;
            white-space: nowrap;
            border-bottom: 1px solid #f0f0f0;
        }

        .table-row:last-child > .table-cell {
            border-bottom: none;
        }

        .table-header .table-cell {
            font-size: 12px;
            font-weight: 600;
            color: #666;
            background-color: #f8f9fa;
        }

        .dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 8px;
            vertical-align: middle;
        }

        .dot.glm {
            background-color: #3b82f6;
        }

        .dot.minimax {
            background-color: #f97316;
        }

        .dot.kimi {
            background-color: #8b5cf6;
        }

        .dot.volc {
            background-color: #06b6d4;
        }

        .dot.alibaba {
            background-color: #f97316;
        }

        .dot.xiaomi {
            background-color: #f97316;
        }

        .dot.tencent {
            background-color: #3b82f6;
        }

        .price {
            font-weight: 600;
            color: #22c55e;
        }

        .discount {
            background-color: #fef3c7;
            color: #d97706;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
        }

        .badge {
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 500;
        }

        .badge.glm-badge {
            background-color: #d1fae5;
            color: #059669;
        }

        .badge.minimax-badge {
            background-color: #fee2e2;
            color: #dc2626;
        }

        .badge.kimi-badge {
            background-color: #d1fae5;
            color: #059669;
        }

        .badge.volc-badge {
            background-color: #fed7aa;
            color: #ea580c;
        }

        .badge.alibaba-badge {
            background-color: #fed7aa;
            color: #ea580c;
        }

        .badge.xiaomi-badge {
            background-color: #d1fae5;
            color: #059669;
        }

        .badge.tencent-badge {
            background-color: #d1fae5;
            color: #059669;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 32px;
            }

            .stats {
                flex-wrap: wrap;
            }

            .stat-card {
                min-width: calc(50% - 16px);
                padding: 24px 20px;
            }

            .comparison-title {
                font-size: 24px;
            }

            .plan-title {
                font-size: 28px;
            }
        }

        .detailed-plan {
            padding: 60px 20px;
            background-color: #fafafa;
        }

        .plan-title {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            text-align: center;
            margin-bottom: 16px;
        }

        .plan-subtitle {
            font-size: 14px;
            color: #999;
            text-align: center;
            margin-bottom: 40px;
        }

        .plan-card {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            border-left: 4px solid #22c55e;
        }

        .card-header {
            padding: 24px 32px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 16px;
        }

        .card-title {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .platform-name {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .plan-name {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .promo-badge {
            background-color: #fcd34d;
            color: #92400e;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
        }

        .card-models {
            text-align: right;
        }

        .models-label {
            font-size: 12px;
            color: #999;
            display: block;
            margin-bottom: 4px;
        }

        .models-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 8px;
            font-size: 13px;
            color: #666;
        }

        .card-desc {
            padding: 0 32px 16px;
            font-size: 13px;
            color: #999;
            border-bottom: 1px solid #f0f0f0;
        }

        .pricing-section {
            padding: 24px 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .pricing-card {
            background-color: #f8fafc;
            border-radius: 12px;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: box-shadow 0.2s;
        }

        .pricing-card:hover {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .pricing-card.lite {
            border: 1px solid #e2e8f0;
        }

        .pricing-card.pro {
            border: 1px solid #f97316;
        }

        .pricing-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .plan-type {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }

        .pricing-badge {
            background-color: #fcd34d;
            color: #92400e;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 500;
        }

        .pricing-badge.pro-badge {
            background-color: #fecaca;
            color: #dc2626;
        }

        .pricing-details {
            display: flex;
            gap: 24px;
            font-size: 13px;
            color: #666;
        }

        .pricing-price {
            text-align: right;
        }

        .price-value {
            font-size: 24px;
            font-weight: 700;
            color: #22c55e;
        }

        .price-unit {
            font-size: 14px;
            color: #666;
            margin-left: 2px;
        }

        .price-note {
            display: block;
            font-size: 12px;
            color: #999;
            margin-top: 4px;
        }

        .notice-section {
            margin: 0 32px;
            padding: 16px 20px;
            background-color: #fffbeb;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .notice-icon {
            color: #d97706;
            font-size: 14px;
            font-weight: bold;
        }

        .notice-text {
            font-size: 13px;
            color: #92400e;
            flex: 1;
        }

        .rules-section {
            margin: 24px 32px;
            padding: 20px 24px;
            background-color: #f1f5f9;
            border-radius: 12px;
        }

        .rules-title {
            font-size: 13px;
            font-weight: 600;
            color: #666;
            display: block;
            margin-bottom: 12px;
        }

        .rules-badges {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .rule-badge {
            background-color: #fff;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 12px;
            color: #666;
            border: 1px solid #e2e8f0;
        }

        .card-footer {
            margin: 0 32px 32px;
            padding: 20px 24px;
            background-color: #fafafa;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-tags {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .footer-tag {
            background-color: #d1fae5;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 12px;
            color: #059669;
            font-weight: 500;
        }

        .buy-btn {
            background-color: #2563eb;
            color: #fff;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .buy-btn:hover {
            background-color: #1d4ed8;
        }

        @media (max-width: 768px) {
            .card-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .card-models {
                text-align: left;
            }

            .models-list {
                justify-content: flex-start;
            }

            .pricing-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .pricing-details {
                flex-direction: column;
                gap: 4px;
            }

            .pricing-price {
                text-align: left;
            }

            .card-footer {
                flex-direction: column;
                align-items: stretch;
            }

            .buy-btn {
                width: 100%;
            }
        }

        

        .glm-card {
            border-left-color: #3b82f6; 
        }

        .minimax-card {
            border-left-color: #f97316;
        }

        .kimi-card {
            border-left-color: #8b5cf6;
        }

        .tencent-card {
            border-left-color: #3b82f6;
        }

        .volc-card {
            border-left-color: #06b6d4;
        }

        .promo-badge.glm-promo {
            background-color: #d1fae5;
            color: #059669;
        }

        .promo-badge.minimax-promo {
            background-color: #fecaca;
            color: #dc2626;
        }

        .promo-badge.kimi-promo {
            background-color: #d1fae5;
            color: #059669;
        }

        .promo-badge.tencent-promo {
            background-color: #fcd34d;
            color: #92400e;
        }

        .promo-badge.volc-promo {
            background-color: #fcd34d;
            color: #92400e;
        }

        .pricing-card.glm-lite {
            border-color: #e2e8f0;
        }

        .pricing-card.glm-pro {
            border-color: #f97316;
        }

        .pricing-card.glm-max {
            border-color: #8b5cf6;
        }

        .pricing-badge.glm-lite-badge {
            background-color: #dbeafe;
            color: #2563eb;
        }

        .pricing-badge.glm-pro-badge {
            background-color: #fecaca;
            color: #dc2626;
        }

        .pricing-badge.glm-max-badge {
            background-color: #ddd6fe;
            color: #7c3aed;
        }

        .pricing-card.minimax-starter,
        .pricing-card.minimax-plus,
        .pricing-card.minimax-max {
            border-color: #e2e8f0;
        }

        .pricing-card.minimax-plus-fast,
        .pricing-card.minimax-ultra-fast {
            border-color: #e2e8f0;
        }

        .pricing-card.minimax-max-fast {
            border-color: #f97316;
        }

        .pricing-badge.minimax-starter-badge {
            background-color: #fed7aa;
            color: #ea580c;
        }

        .pricing-badge.minimax-max-badge {
            background-color: #fecaca;
            color: #dc2626;
        }

        .pricing-badge.minimax-ultra-badge {
            background-color: #ddd6fe;
            color: #7c3aed;
        }

        .pricing-card.kimi-andante {
            border-color: #e2e8f0;
        }

        .pricing-card.kimi-moderato {
            border-color: #f97316;
        }

        .pricing-badge.kimi-andante-badge {
            background-color: #ddd6fe;
            color: #7c3aed;
        }

        .pricing-badge.kimi-moderato-badge {
            background-color: #fecaca;
            color: #dc2626;
        }

        .pricing-card.tencent-lite,
        .pricing-card.tencent-pro {
            border-color: #e2e8f0;
        }

        .pricing-badge.tencent-lite-badge {
            background-color: #fcd34d;
            color: #92400e;
        }

        .pricing-badge.tencent-pro-badge {
            background-color: #fecaca;
            color: #dc2626;
        }

        .pricing-card.volc-lite {
            border-color: #e2e8f0;
        }

        .pricing-card.volc-pro {
            border-color: #f97316;
        }

        .pricing-badge.volc-lite-badge {
            background-color: #fcd34d;
            color: #92400e;
        }

        .pricing-badge.volc-pro-badge {
            background-color: #fecaca;
            color: #dc2626;
        }

        .price-value.special-price {
            color: #3b82f6;
        }

        .version-section {
            padding: 12px 32px;
            font-size: 13px;
            color: #999;
            background-color: #fafafa;
            border-top: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
        }

        .tools-section {
            margin: 0 32px 24px;
            padding: 20px 24px;
            background-color: #f8fafc;
            border-radius: 12px;
        }

        .tools-title {
            font-size: 13px;
            font-weight: 600;
            color: #666;
            display: block;
            margin-bottom: 12px;
        }

        .tools-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tool-badge {
            background-color: #fff;
            padding: 5px 12px;
            border-radius: 6px;
            font-size: 12px;
            color: #666;
            border: 1px solid #e2e8f0;
        }

        .footer-tag.glm-tag,
        .footer-tag.kimi-tag {
            background-color: #dbeafe;
            color: #2563eb;
        }

        .footer-tag.minimax-tag {
            background-color: #fed7aa;
            color: #ea580c;
        }

        .footer-tag.tencent-tag {
            background-color: #d1fae5;
            color: #059669;
        }

        .footer-tag.volc-tag {
            background-color: #cffafe;
            color: #0891b2;
        }

        .notice-section.glm-notice,
        .notice-section.kimi-notice {
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
        }

        .notice-section.glm-notice .notice-icon,
        .notice-section.kimi-notice .notice-icon {
            color: #64748b;
        }

        .notice-section.glm-notice .notice-text,
        .notice-section.kimi-notice .notice-text {
            color: #64748b;
        }

        /* 选项卡样式 */
        .tabs-container {
            margin-top: 24px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .tabs-header {
            display: flex;
            gap: 8px;
            border-bottom: 1px solid #e2e8f0;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 12px 24px;
            border: none;
            background: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            color: #666;
            position: relative;
            transition: color 0.3s;
            border-radius: 8px 8px 0 0;
        }

        .tab-btn:hover {
            color: #22c55e;
            background-color: #f0fdf4;
        }

        .tab-btn.active {
            color: #22c55e;
            font-weight: 600;
        }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #22c55e;
            border-radius: 2px 2px 0 0;
        }

        .tabs-content {
            margin-top: 20px;
        }

        .tab-panel {
            display: none;
        }

        .tab-panel.active {
            display: block;
        }

        /* FAQ样式 */
        .faq-section {
            padding: 60px 20px;
            background-color: #fff;
        }

        .faq-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }

        .faq-column {
            padding-right: 24px;
        }

        .faq-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .faq-subtitle {
            font-size: 14px;
            color: #999;
            margin-bottom: 32px;
        }

        .faq-container {
            border-right: 1px solid #eee;
            padding-right: 24px;
        }

        /* 新闻栏目样式 */
        .news-column {
            padding-left: 24px;
        }

        .news-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .news-subtitle {
            font-size: 14px;
            color: #999;
            margin-bottom: 32px;
        }

        .news-container {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .news-item {
            border-bottom: 1px solid #eee;
        }

        .news-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
        }

        .news-link:hover {
            color: #22c55e;
        }

        .news-text {
            font-size: 14px;
            line-height: 1.6;
        }

        .news-icon {
            font-size: 18px;
            color: #999;
            transition: transform 0.3s, color 0.3s;
        }

        .news-link:hover .news-icon {
            transform: translateX(4px);
            color: #22c55e;
        }

        .faq-item {
            border-bottom: 1px solid #eee;
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
        }

        .question-text {
            font-size: 15px;
            color: #333;
            font-weight: 500;
        }

        .faq-icon {
            font-size: 20px;
            color: #999;
            transition: transform 0.3s;
            font-weight: 300;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            color: #22c55e;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer p {
            padding: 0 0 20px;
            font-size: 14px;
            color: #666;
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        /* 响应式设计 - 平板横屏 */
        @media (max-width: 1024px) {
            .hero {
                padding: 48px 16px;
            }

            .hero-title {
                font-size: 40px;
            }

            .hero-description {
                font-size: 16px;
            }

            .stats {
                gap: 24px;
                padding: 0 16px;
            }

            .stat-card {
                padding: 24px 32px;
                min-width: 140px;
            }

            .stat-value {
                font-size: 32px;
            }

            .comparison {
                padding: 48px 16px;
            }

            .comparison-title {
                font-size: 28px;
            }

            .plans-container {
                gap: 20px;
                padding: 0 16px;
            }

            .plan-card {
                padding: 24px;
            }

            .tabs-container {
                padding: 0;
            }

            .faq-container {
                padding: 0 16px;
            }
        }

        /* 响应式设计 - 平板竖屏/手机横屏 */
        @media (max-width: 768px) {
            .hero {
                padding: 40px 12px;
            }

            .hero-title {
                font-size: 32px;
                flex-direction: column;
                gap: 12px;
            }

            .hero-title img {
                width: 48px;
                height: 48px;
            }

            .hero-description {
                font-size: 15px;
                line-height: 1.8;
            }

            .hero .btn {
                padding: 10px 32px;
                font-size: 14px;
                margin-top: 32px;
            }

            .stats {
                flex-wrap: wrap;
                gap: 16px;
                padding: 0 12px;
            }

            .stat-card {
                padding: 20px 24px;
                min-width: calc(50% - 8px);
                flex: 1;
            }

            .stat-value {
                font-size: 28px;
            }

            .stat-label {
                font-size: 11px;
            }

            .comparison {
                padding: 32px 12px;
                margin-top: 32px;
            }

            .comparison-title {
                font-size: 24px;
            }

            .comparison-subtitle {
                font-size: 13px;
            }

            .table-cell {
                padding: 16px 12px;
                font-size: 12px;
            }

            .plans-container {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 0 12px;
            }

            .plan-card {
                padding: 20px;
            }

            .plan-header {
                margin-bottom: 16px;
            }

            .plan-name {
                font-size: 18px;
            }

            .plan-price {
                font-size: 24px;
            }

            .tabs-wrapper {
                padding: 32px 12px;
            }

            .tabs-title {
                font-size: 24px;
            }

            .tabs-nav {
                flex-wrap: wrap;
                gap: 8px;
            }

            .tab-btn {
                padding: 8px 16px;
                font-size: 13px;
            }

            .tab-panel {
                padding: 20px;
            }

            .faq-section {
                padding: 32px 12px;
                display: none;
            }

            .faq-container {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 0 12px;
            }

            .faq-column {
                border-right: none;
                padding-right: 0;
            }

            .news-column {
                padding-left: 0;
            }

            .faq-title,
            .news-title {
                font-size: 20px;
            }

            .faq-subtitle,
            .news-subtitle {
                font-size: 13px;
                margin-bottom: 24px;
            }

            .question-text {
                font-size: 14px;
            }

            .faq-answer p {
                font-size: 13px;
            }

            .news-text {
                font-size: 13px;
            }

            .news-link {
                padding: 14px 0;
            }
        }

        /* 响应式设计 - 手机 */
        @media (max-width: 480px) {
            .hero {
                padding: 32px 12px;
            }

            .hero-title {
                font-size: 28px;
            }

            .hero-title img {
                width: 40px;
                height: 40px;
            }

            .hero-description {
                font-size: 14px;
            }

            .hero .btn {
                padding: 8px 24px;
                font-size: 13px;
                margin-top: 24px;
            }

            .stats {
                gap: 12px;
            }

            .stat-card {
                padding: 16px 20px;
                min-width: calc(50% - 6px);
            }

            .stat-value {
                font-size: 24px;
            }

            .comparison {
                padding: 24px 12px;
                margin-top: 24px;
            }

            .comparison-title {
                font-size: 20px;
            }

            .comparison-subtitle {
                font-size: 12px;
            }

            .scroll-hint {
                font-size: 11px;
                margin-bottom: 20px;
            }

            .table-cell {
                padding: 12px 8px;
                font-size: 11px;
            }

            .badge {
                padding: 2px 6px;
                font-size: 10px;
            }

            .plans-section {
                padding: 24px 12px;
            }

            .plans-title {
                font-size: 20px;
            }

            .plans-subtitle {
                font-size: 12px;
            }

            .plan-card {
                padding: 0px;
            }
            .pricing-section {
            padding: 24px 10px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .notice-section {
            margin: 0 10px;
            padding: 16px 20px;
            background-color: #fffbeb;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .rules-section {
            margin: 24px 10px;
            padding: 20px 24px;
            background-color: #f1f5f9;
            border-radius: 12px;
        }
         .card-footer {
            margin: 0 10px 32px;
            padding: 20px 24px;
            background-color: #fafafa;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
            .plan-name {
                font-size: 16px;
            }

            .plan-price {
                font-size: 20px;
            }

            .plan-features li {
                font-size: 12px;
            }

            .tabs-wrapper {
                padding: 24px 12px;
            }

            .tabs-title {
                font-size: 20px;
            }

            .tabs-nav {
                gap: 6px;
            }

            .tab-btn {
                padding: 6px 12px;
                font-size: 12px;
            }

            .tab-panel {
                padding: 0px;
            }

            .faq-section {
                padding: 24px 12px;
            }

            .faq-title,
            .news-title {
                font-size: 18px;
            }

            .faq-subtitle,
            .news-subtitle {
                font-size: 12px;
                margin-bottom: 20px;
            }

            .faq-question {
                padding: 16px 0;
            }

            .question-text {
                font-size: 13px;
            }

            .faq-icon {
                font-size: 18px;
            }

            .faq-answer p {
                font-size: 12px;
                padding: 0 0 16px;
            }

            .news-link {
                padding: 12px 0;
            }

            .news-text {
                font-size: 12px;
            }

            .news-icon {
                font-size: 16px;
            }
        }
   