:root {
            --primary: #4f46e5;
            --primary-gradient: linear-gradient(135deg, #ff4e50, #f9d423, #00c6ff, #0072ff, #7f00ff);
            --text-color: #1e293b;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --rainbow-red: #ff4e50;
            --rainbow-yellow: #f9d423;
            --rainbow-green: #2ecc71;
            --rainbow-blue: #00c6ff;
            --rainbow-purple: #7f00ff;
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            background-color: var(--bg-light);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 顶部导航 */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 1px 15px rgba(0, 0, 0, 0.05);
            border-bottom: 2px solid;
            border-image: linear-gradient(90deg, var(--rainbow-red), var(--rainbow-yellow), var(--rainbow-green), var(--rainbow-blue), var(--rainbow-purple)) 1;
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .logo-area {
            display: flex;
            align-items: center;
        }

        .ai-page-logo {
            max-height: 45px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 20px;
            align-items: center;
        }

        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
        }

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

        .btn-nav {
            background: linear-gradient(90deg, #4f46e5, #7f00ff);
            color: #fff !important;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            transition: var(--transition);
        }

        .btn-nav:hover {
            opacity: 0.9;
            transform: scale(1.05);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-color);
        }

        /* Hero首屏 - 严禁出现任何图片资源 */
        .hero {
            padding: 160px 0 100px;
            background: radial-gradient(circle at 10% 20%, rgba(255, 78, 80, 0.05) 0%, rgba(0, 198, 255, 0.05) 90%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(127, 0, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0, 198, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-tag {
            display: inline-block;
            padding: 6px 16px;
            background: linear-gradient(90deg, rgba(255, 78, 80, 0.1), rgba(0, 198, 255, 0.1));
            border-radius: 50px;
            font-size: 14px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(79, 70, 229, 0.2);
        }

        .hero h1 {
            font-size: 2.8rem;
            line-height: 1.3;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #1e293b 30%, #4f46e5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto 35px;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--rainbow-red), var(--rainbow-purple));
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(127, 0, 255, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(127, 0, 255, 0.3);
        }

        .btn-secondary {
            background-color: var(--bg-white);
            color: var(--text-color);
            border: 2px solid #e2e8f0;
        }

        .btn-secondary:hover {
            background-color: #f1f5f9;
            transform: translateY(-2px);
        }

        /* 统一标题组件 */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-color);
            position: relative;
            display: inline-block;
            padding-bottom: 12px;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--rainbow-red), var(--rainbow-yellow), var(--rainbow-blue));
        }

        .section-header p {
            color: var(--text-light);
            margin-top: 15px;
            font-size: 1rem;
        }

        /* 各个模块共用 Section 布局 */
        section {
            padding: 80px 0;
            border-bottom: 1px solid #f1f5f9;
        }

        /* 数据指标卡片 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .stat-card {
            background: var(--bg-white);
            padding: 30px 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
            transition: var(--transition);
            border: 1px solid #f1f5f9;
            border-top: 4px solid var(--rainbow-red);
        }

        .stat-card:nth-child(2) { border-top-color: var(--rainbow-yellow); }
        .stat-card:nth-child(3) { border-top-color: var(--rainbow-green); }
        .stat-card:nth-child(4) { border-top-color: var(--rainbow-blue); }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .stat-num {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-color);
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-light);
        }

        /* 关于我们与平台介绍 */
        .about-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .about-text p {
            color: var(--text-light);
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .feature-bullets {
            list-style: none;
            margin-top: 20px;
        }

        .feature-bullets li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 10px;
            color: var(--text-color);
            font-weight: 500;
        }

        .feature-bullets li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--rainbow-green);
            font-weight: bold;
        }

        .about-media {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-media img {
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border: 4px solid var(--bg-white);
        }

        /* 全平台AIGC服务 (支持的模型名全列出，形成标签云) */
        .models-tags-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .model-tag {
            padding: 8px 16px;
            background-color: var(--bg-white);
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-color);
            transition: var(--transition);
            cursor: default;
        }

        .model-tag:hover {
            transform: translateY(-2px);
            border-color: var(--primary);
            box-shadow: 0 4px 10px rgba(79, 70, 229, 0.1);
            color: var(--primary);
        }

        /* 服务能力卡片 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .service-card {
            background-color: var(--bg-white);
            border-radius: 12px;
            padding: 30px;
            border: 1px solid #e2e8f0;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--rainbow-red), var(--rainbow-yellow));
        }

        .service-card:nth-child(2n)::after {
            background: linear-gradient(90deg, var(--rainbow-green), var(--rainbow-blue));
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.05);
        }

        .service-icon {
            font-size: 2rem;
            margin-bottom: 20px;
            display: inline-block;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* 一站式AIGC制作 - 图文混排 */
        .process-showcase {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: center;
        }

        .process-steps-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .process-step-item {
            display: flex;
            gap: 15px;
            background-color: var(--bg-white);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #f1f5f9;
        }

        .step-number {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--rainbow-blue), var(--rainbow-purple));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .step-content h4 {
            font-size: 1.1rem;
            margin-bottom: 6px;
        }

        .step-content p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* 对比评测表格 */
        .comparison-wrapper {
            background-color: var(--bg-white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            border: 1px solid #e2e8f0;
            overflow-x: auto;
        }

        .comparison-header-info {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            padding: 20px;
            background: linear-gradient(90deg, rgba(255, 78, 80, 0.05), rgba(127, 0, 255, 0.05));
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .comp-score {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--rainbow-red);
        }

        .comp-stars {
            font-size: 1.5rem;
            color: #f1c40f;
        }

        table.comparison-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 600px;
        }

        table.comparison-table th, table.comparison-table td {
            padding: 16px 20px;
            border-bottom: 1px solid #e2e8f0;
        }

        table.comparison-table th {
            background-color: #f8fafc;
            font-weight: 700;
        }

        table.comparison-table tr:hover {
            background-color: #f8fafc;
        }

        .text-center {
            text-align: center;
        }

        .highlight-cell {
            background-color: rgba(79, 70, 229, 0.02);
            font-weight: 600;
            color: var(--primary);
        }

        /* Token 比价 */
        .token-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .token-card {
            background-color: var(--bg-white);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid #e2e8f0;
            text-align: center;
            transition: var(--transition);
        }

        .token-card:hover {
            border-color: var(--rainbow-blue);
            transform: translateY(-2px);
        }

        .token-price {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--rainbow-green);
            margin: 15px 0;
        }

        .token-meta {
            font-size: 12px;
            color: var(--text-light);
        }

        /* 案例展示 */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 35px;
        }

        .case-card {
            background-color: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transition: var(--transition);
        }

        .case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .case-img-wrap {
            width: 100%;
            height: 200px;
            overflow: hidden;
            background-color: #f1f5f9;
        }

        .case-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .case-card:hover .case-img-wrap img {
            transform: scale(1.05);
        }

        .case-info {
            padding: 20px;
        }

        .case-tag {
            display: inline-block;
            padding: 4px 10px;
            background-color: rgba(79, 70, 229, 0.08);
            color: var(--primary);
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .case-info h3 {
            font-size: 1.15rem;
            margin-bottom: 10px;
        }

        .case-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* 职业技术培训 / 人工智能培训 */
        .training-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .training-card {
            background-color: var(--bg-white);
            padding: 25px 20px;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            text-align: center;
            position: relative;
            transition: var(--transition);
        }

        .training-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--rainbow-yellow), var(--rainbow-green));
            border-radius: 10px 10px 0 0;
        }

        .training-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.04);
        }

        .training-card h3 {
            font-size: 1.15rem;
            margin-bottom: 10px;
            color: var(--text-color);
        }

        .training-card p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* 客户评论卡片 */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 35px;
        }

        .review-card {
            background-color: var(--bg-white);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            position: relative;
        }

        .review-card::before {
            content: '“';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: rgba(79, 70, 229, 0.1);
            font-family: serif;
            line-height: 1;
        }

        .review-text {
            color: var(--text-color);
            font-size: 0.95rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .review-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--rainbow-red), var(--rainbow-yellow));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
        }

        .review-card:nth-child(2n) .review-avatar {
            background: linear-gradient(135deg, var(--rainbow-green), var(--rainbow-blue));
        }

        .review-card:nth-child(3n) .review-avatar {
            background: linear-gradient(135deg, var(--rainbow-blue), var(--rainbow-purple));
        }

        .user-info h4 {
            font-size: 0.95rem;
            color: var(--text-color);
        }

        .user-info p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* 帮助中心 & FAQ折叠面板 */
        .faq-layout {
            max-width: 800px;
            margin: 40px auto 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq-item {
            background-color: var(--bg-white);
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-question {
            padding: 18px 24px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            background-color: #ffffff;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: #fcfcfd;
        }

        .faq-answer-inner {
            padding: 0 24px 20px;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* 资讯与最新文章 */
        .news-section-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        @media (max-width: 992px) {
            .news-section-layout {
                grid-template-columns: 1fr;
            }
        }

        .articles-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .article-item {
            background-color: var(--bg-white);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            text-decoration: none;
            transition: var(--transition);
        }

        .article-item:hover {
            border-color: var(--primary);
            transform: translateX(4px);
        }

        .article-title {
            color: var(--text-color);
            font-weight: 600;
            font-size: 1rem;
        }

        .article-meta {
            font-size: 0.85rem;
            color: var(--text-light);
            white-space: nowrap;
        }

        /* 智能需求匹配与联系我们表单 */
        .contact-layout {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
        }

        @media (max-width: 768px) {
            .contact-layout {
                grid-template-columns: 1fr;
            }
        }

        .form-card {
            background-color: var(--bg-white);
            padding: 40px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.01);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #cbd5e1;
            font-size: 0.95rem;
            outline: none;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }

        .contact-info-panel {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .info-icon {
            font-size: 1.5rem;
            background: linear-gradient(135deg, var(--rainbow-red), var(--rainbow-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .info-content h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .info-content p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .qr-codes {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .qr-box {
            text-align: center;
            background: var(--bg-white);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            width: 140px;
        }

        .qr-box img {
            width: 100%;
            height: auto;
            border-radius: 4px;
            margin-bottom: 8px;
        }

        .qr-box span {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-color);
        }

        /* 友情链接 */
        .friendship-links {
            background-color: var(--bg-white);
            padding: 25px 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .links-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            align-items: center;
        }

        .links-title {
            font-weight: bold;
            font-size: 14px;
            color: var(--text-light);
        }

        .links-wrap a {
            font-size: 14px;
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .links-wrap a:hover {
            color: var(--primary);
        }

        /* 页脚规范 - 高对比度 */
        footer {
            background-color: #0f172a;
            color: #94a3b8;
            padding: 60px 0 30px;
            font-size: 0.9rem;
            border-top: 4px solid var(--rainbow-purple);
        }

        footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--transition);
        }

        footer a:hover {
            color: #ffffff;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: #ffffff;
            font-size: 1.1rem;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-bottom p {
            font-size: 0.85rem;
        }

        /* 浮动客服入口 */
        .floating-kefu {
            position: fixed;
            right: 20px;
            bottom: 40px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .float-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--rainbow-red), var(--rainbow-purple));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            cursor: pointer;
            text-decoration: none;
            transition: var(--transition);
            font-weight: bold;
            font-size: 12px;
            text-align: center;
            line-height: 1.2;
            border: 2px solid #fff;
        }

        .float-btn:hover {
            transform: scale(1.1);
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: var(--bg-white);
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.05);
                border-bottom: 2px solid var(--primary);
            }

            .nav-menu.active {
                display: flex;
            }

            .menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .about-layout, .process-showcase {
                grid-template-columns: 1fr;
            }
        }