:root {
            --primary: #0052ff;
            --primary-bright: #00d2ff;
            --accent: #ff007f;
            --dark: #0f172a;
            --dark-light: #1e293b;
            --light: #f8fafc;
            --gray: #e2e8f0;
            --text-dark: #334155;
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --glow: 0 0 20px rgba(0, 82, 255, 0.2);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-family);
            background-color: #ffffff;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* 极致鲜亮风通用样式 */
        .gradient-text {
            background: linear-gradient(135deg, var(--primary), var(--primary-bright), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            outline: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-bright));
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(0, 82, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 82, 255, 0.5);
        }

        .btn-accent {
            background: linear-gradient(135deg, var(--accent), #ff5e62);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
        }

        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 0, 127, 0.5);
        }

        .btn-secondary {
            background: var(--light);
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: #ffffff;
        }

        /* 容器 */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* 导航 */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--gray);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
        }

        .ai-page-logo {
            height: 45px;
            object-fit: contain;
        }

        nav {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--dark-light);
            font-weight: 500;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        nav a:hover {
            color: var(--primary);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }

        /* Hero首屏 - 极致鲜亮风且绝无图片 */
        .hero {
            position: relative;
            padding: 180px 0 120px;
            background: radial-gradient(circle at 10% 20%, rgba(0, 198, 251, 0.08) 0%, rgba(0, 91, 234, 0.08) 90%), #ffffff;
            overflow: hidden;
            text-align: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, rgba(0, 82, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -10%;
            width: 40vw;
            height: 40vw;
            background: radial-gradient(circle, rgba(255, 0, 127, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero h1 {
            font-size: 2.8rem;
            line-height: 1.25;
            margin-bottom: 1.5rem;
            color: var(--dark);
            letter-spacing: -1px;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-dark);
            max-width: 800px;
            margin: 0 auto 2.5rem;
        }

        .hero-btns {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3.5rem;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-feat-card {
            background: #ffffff;
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 82, 255, 0.08);
            border: 1px solid var(--gray);
            transition: var(--transition);
        }

        .hero-feat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-bright);
            box-shadow: var(--glow);
        }

        .hero-feat-card h3 {
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .hero-feat-card p {
            font-size: 0.85rem;
            margin: 0;
            color: #64748b;
        }

        /* 通用区块 */
        section {
            padding: 80px 0;
            border-bottom: 1px solid var(--gray);
        }

        .section-light {
            background-color: var(--light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .section-title p {
            color: #64748b;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* 平台介绍 & 关于我们 */
        .intro-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 3rem;
            align-items: center;
        }

        .intro-text h3 {
            font-size: 1.75rem;
            margin-bottom: 1.2rem;
            color: var(--dark);
        }

        .intro-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .intro-item {
            background: #ffffff;
            padding: 1.25rem;
            border-radius: 12px;
            border-left: 4px solid var(--primary);
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        }

        .intro-item h4 {
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .intro-card {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: #ffffff;
            padding: 2.5rem;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 82, 255, 0.25);
        }

        .intro-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .intro-card p {
            color: rgba(255,255,255,0.85);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        /* 全平台AIGC服务 (支持模型标签云) */
        .tags-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .model-tag {
            padding: 0.6rem 1.2rem;
            background: #ffffff;
            border: 1px solid var(--gray);
            border-radius: 50px;
            font-weight: 500;
            color: var(--dark-light);
            transition: var(--transition);
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
        }

        .model-tag:hover {
            background: var(--primary);
            color: #ffffff;
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--glow);
        }

        /* 一站式AIGC制作 (主打场景) */
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .scene-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: var(--transition);
            border: 1px solid var(--gray);
        }

        .scene-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 82, 255, 0.15);
            border-color: var(--primary-bright);
        }

        .scene-img-holder {
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scene-img-holder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .scene-content {
            padding: 1.5rem;
        }

        .scene-content h3 {
            font-size: 1.25rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .scene-content p {
            font-size: 0.9rem;
            color: #64748b;
        }

        /* 对比评测 */
        .eval-table-wrapper {
            width: 100%;
            overflow-x: auto;
            border-radius: 16px;
            box-shadow: 0 10px 35px rgba(0,0,0,0.05);
            background: #ffffff;
            border: 1px solid var(--gray);
        }

        .eval-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 800px;
        }

        .eval-table th, .eval-table td {
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid var(--gray);
        }

        .eval-table th {
            background: var(--light);
            color: var(--dark);
            font-weight: 700;
        }

        .eval-table tr:last-child td {
            border-bottom: none;
        }

        .eval-table tr.highlight-row {
            background: rgba(0, 82, 255, 0.04);
        }

        .badge-score {
            display: inline-block;
            background: linear-gradient(135deg, #ff0055, #ff5e00);
            color: #ffffff;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
        }

        /* 标准化流程 & 技术标准 (时间线) */
        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--gray);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            width: 50%;
            padding: 1.5rem 2.5rem;
            box-sizing: border-box;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            top: 2rem;
            right: -10px;
            width: 20px;
            height: 20px;
            background: var(--primary-bright);
            border: 4px solid #ffffff;
            border-radius: 50%;
            z-index: 1;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        .timeline-item.right {
            left: 50%;
        }

        .timeline-item.right::after {
            left: -10px;
        }

        .timeline-card {
            background: #ffffff;
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border: 1px solid var(--gray);
        }

        .timeline-card h3 {
            font-size: 1.15rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        /* 案例中心 */
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .case-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--gray);
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            transition: var(--transition);
        }

        .case-card:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .case-img-wrap {
            position: relative;
            width: 100%;
            height: 180px;
            overflow: hidden;
            background: var(--light);
        }

        .case-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .case-info {
            padding: 1rem;
        }

        .case-info h4 {
            font-size: 1rem;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .case-info p {
            font-size: 0.8rem;
            color: #64748b;
        }

        /* Token 比价 */
        .token-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .token-card {
            background: #ffffff;
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid var(--gray);
            text-align: center;
            transition: var(--transition);
        }

        .token-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: var(--glow);
        }

        .token-card h3 {
            color: var(--dark);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .price-tag {
            font-size: 1.8rem;
            color: var(--accent);
            font-weight: 800;
            margin: 1rem 0;
        }

        .token-card ul {
            list-style: none;
            text-align: left;
            margin: 1.5rem 0;
        }

        .token-card li {
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
            color: #64748b;
        }

        /* 培训 */
        .training-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .training-card {
            background: #ffffff;
            padding: 2.5rem;
            border-radius: 24px;
            border: 1px solid var(--gray);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            display: flex;
            gap: 1.5rem;
        }

        .training-icon {
            font-size: 2.5rem;
            color: var(--primary);
        }

        .training-detail h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 0.8rem;
        }

        .training-detail p {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 1.2rem;
        }

        .training-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .training-tag {
            background: var(--light);
            color: var(--primary);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* 解决方案 & 网络 */
        .solution-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .solution-card {
            background: #ffffff;
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid var(--gray);
            transition: var(--transition);
        }

        .solution-card:hover {
            background: var(--dark);
            color: #ffffff;
        }

        .solution-card:hover h3 {
            color: #ffffff;
        }

        .solution-card h3 {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
            transition: var(--transition);
        }

        /* 评论 */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .review-card {
            background: #ffffff;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.03);
            border: 1px solid var(--gray);
            position: relative;
        }

        .review-card::before {
            content: "“";
            font-size: 4rem;
            color: rgba(0, 82, 255, 0.1);
            position: absolute;
            top: 10px;
            left: 15px;
            line-height: 1;
        }

        .review-text {
            font-size: 0.95rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .reviewer-meta h4 {
            font-size: 0.95rem;
            color: var(--dark);
        }

        .reviewer-meta p {
            font-size: 0.8rem;
            color: #64748b;
        }

        /* FAQ */
        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--gray);
            padding: 1.2rem 0;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            color: #64748b;
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        /* 术语百科 & 自助排查 */
        .wiki-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .wiki-card {
            background: #ffffff;
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid var(--gray);
        }

        .wiki-card h3 {
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .trouble-list {
            list-style: none;
        }

        .trouble-list li {
            padding: 1rem;
            background: #ffffff;
            border: 1px solid var(--gray);
            border-radius: 8px;
            margin-bottom: 0.75rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .trouble-tag {
            background: #ffe2e5;
            color: #ff003c;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* 表单与联系我们 */
        .contact-layout {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 3rem;
        }

        .form-card {
            background: #ffffff;
            padding: 3rem;
            border-radius: 24px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.06);
            border: 1px solid var(--gray);
        }

        .form-card h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark-light);
            margin-bottom: 0.5rem;
        }

        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--gray);
            border-radius: 8px;
            font-family: inherit;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.15);
            outline: none;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .qr-card {
            background: var(--light);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--gray);
        }

        .qr-card img {
            max-width: 180px;
            height: auto;
            border-radius: 12px;
            margin-top: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        /* 文章列表 */
        .articles-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .article-item {
            background: #ffffff;
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid var(--gray);
            transition: var(--transition);
        }

        .article-item:hover {
            border-color: var(--primary);
            box-shadow: var(--glow);
        }

        .article-item a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .article-meta {
            font-size: 0.8rem;
            color: #64748b;
        }

        /* 友情链接 */
        .friends-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .friends-links a {
            color: #64748b;
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .friends-links a:hover {
            color: var(--primary);
        }

        /* 页脚 */
        footer {
            background: var(--dark);
            color: #94a3b8;
            padding: 60px 0 30px;
            border-top: 1px solid #1e293b;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo img {
            height: 40px;
            margin-bottom: 1rem;
        }

        .footer-col h4 {
            color: #ffffff;
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.6rem;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid #1e293b;
            text-align: center;
            font-size: 0.85rem;
        }

        .footer-home-link-wrap {
            margin-top: 1rem;
        }

        .ai-page-home-link {
            color: var(--primary-bright);
            text-decoration: none;
            font-weight: bold;
        }

        /* 浮动客服 */
        .float-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .widget-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-bright));
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,82,255,0.3);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            position: relative;
        }

        .widget-btn:hover {
            transform: scale(1.1);
        }

        .widget-qr-preview {
            display: none;
            position: absolute;
            bottom: 60px;
            right: 0;
            background: #ffffff;
            padding: 10px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border: 1px solid var(--gray);
            text-align: center;
            width: 150px;
        }

        .widget-btn:hover .widget-qr-preview {
            display: block;
        }

        .widget-qr-preview img {
            width: 100%;
            height: auto;
            border-radius: 6px;
        }

        .widget-qr-preview p {
            font-size: 0.75rem;
            color: var(--dark);
            margin-top: 5px;
        }

        /* 响应式样式 */
        @media (max-width: 1024px) {
            .scene-grid, .token-grid, .solution-grid, .reviews-grid, .wiki-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero h1 {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: #ffffff;
                padding: 1.5rem;
                border-bottom: 1px solid var(--gray);
                box-shadow: 0 10px 15px rgba(0,0,0,0.05);
            }
            nav.active {
                display: flex;
            }
            .hero-features {
                grid-template-columns: repeat(2, 1fr);
            }
            .intro-grid, .contact-layout, .training-grid, .footer-grid {
                grid-template-columns: 1fr;
            }
            .scene-grid, .token-grid, .solution-grid, .reviews-grid, .wiki-grid, .articles-list {
                grid-template-columns: 1fr;
            }
            .timeline::before {
                left: 20px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 45px;
                padding-right: 0;
            }
            .timeline-item.right {
                left: 0;
            }
            .timeline-item::after {
                left: 10px;
            }
            .timeline-item.right::after {
                left: 10px;
            }
            .cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .form-card {
                padding: 1.5rem;
            }
        }