:root {
            --primary: #d81b60;
            --primary-light: #fce4ec;
            --primary-dark: #ad1457;
            --primary-gradient: linear-gradient(135deg, #ff4081 0%, #d81b60 100%);
            --secondary: #8e24aa;
            --dark: #2d3748;
            --light: #fff8fa;
            --white: #ffffff;
            --grey-light: #f7fafc;
            --text-main: #2d3748;
            --text-muted: #718096;
            --border-color: #f8bbd0;
            --shadow: 0 10px 30px rgba(216, 27, 96, 0.05);
            --shadow-hover: 0 15px 40px rgba(216, 27, 96, 0.12);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--text-main);
            background-color: var(--white);
        }

        body {
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Layout Structure */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
            position: relative;
        }

        .section-light {
            background-color: var(--light);
        }

        .section-white {
            background-color: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--primary-gradient);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(216, 27, 96, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(216, 27, 96, 0.4);
            background: linear-gradient(135deg, #d81b60 0%, #ad1457 100%);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
        }

        /* Header Navigation */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-area img {
            height: 45px;
            width: auto;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 20px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-main);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            padding: 8px 12px;
            border-radius: 4px;
        }

        .nav-links a:hover {
            color: var(--primary);
            background-color: var(--primary-light);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--dark);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* Hero Section (No Images) */
        .hero {
            background: radial-gradient(circle at 80% 20%, #fff0f5 0%, #ffffff 100%);
            padding: 120px 0 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,64,129,0.08) 0%, transparent 70%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.2rem;
            line-height: 1.25;
            color: var(--dark);
            margin-bottom: 25px;
            font-weight: 800;
        }

        .hero h1 span {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
        }

        /* Data Cards Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .stat-card {
            background: var(--white);
            padding: 30px 20px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .stat-num {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-main);
            font-weight: 600;
        }

        .stat-sub {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 5px;
        }

        /* About Us */
        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .about-text p {
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-features {
            list-style: none;
        }

        .about-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .about-features li::before {
            content: "✓";
            color: var(--primary);
            font-weight: bold;
            background: var(--primary-light);
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 0.8rem;
        }

        /* AIGC Services Section */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background-color: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(248, 187, 208, 0.3);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-light);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 25px;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        /* Supported Platforms Tags */
        .platform-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }

        .platform-tag {
            background-color: var(--grey-light);
            color: var(--text-main);
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid #edf2f7;
            transition: var(--transition);
        }

        .platform-tag:hover {
            background-color: var(--primary-light);
            color: var(--primary);
            border-color: var(--border-color);
        }

        /* Capabilities Grid */
        .capability-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .capability-card {
            background: var(--white);
            border-radius: 16px;
            padding: 25px;
            text-align: center;
            border: 1px solid rgba(248, 187, 208, 0.4);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .capability-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .capability-card h4 {
            font-size: 1.15rem;
            margin: 15px 0 10px 0;
            color: var(--dark);
        }

        .capability-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Workflow Steps */
        .step-wrapper {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            position: relative;
        }

        .step-card {
            background: var(--white);
            padding: 30px 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            position: relative;
            z-index: 2;
        }

        .step-num {
            width: 45px;
            height: 45px;
            background: var(--primary-gradient);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0 auto 20px auto;
        }

        .step-card h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .step-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* Solutions */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .solution-card {
            background: var(--white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary);
        }

        .solution-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .solution-card ul {
            list-style: none;
            padding-left: 0;
        }

        .solution-card li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .solution-card li::before {
            content: "•";
            color: var(--primary);
            position: absolute;
            left: 5px;
            font-size: 1.2rem;
        }

        /* Cases Grid */
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .case-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .case-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .case-img-container {
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: #eaeaea;
        }

        .case-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .case-card:hover .case-img-container img {
            transform: scale(1.05);
        }

        .case-content {
            padding: 25px;
        }

        .case-tag {
            background: var(--primary-light);
            color: var(--primary);
            padding: 3px 10px;
            border-radius: 10px;
            font-size: 0.8rem;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 12px;
        }

        .case-content h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .case-content p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* Dynamic Banners Gallery Section */
        .banners-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .banner-gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #fff;
            padding: 10px;
            border: 1px solid rgba(248,187,208,0.4);
        }

        .banner-gallery-item img {
            border-radius: 10px;
            width: 100%;
            height: auto;
            display: block;
        }

        /* Review / Testimonial Style */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .review-quote {
            color: var(--text-main);
            font-size: 0.95rem;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .review-info h5 {
            font-size: 1rem;
            color: var(--dark);
            margin-bottom: 2px;
        }

        .review-info p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Compare Section */
        .compare-box {
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow);
            padding: 40px;
            border: 1px solid var(--border-color);
        }

        .compare-rating-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px dashed var(--border-color);
            padding-bottom: 25px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .compare-score {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: baseline;
            gap: 5px;
        }

        .compare-score span {
            font-size: 1.2rem;
            color: var(--text-muted);
        }

        .compare-rating {
            text-align: right;
        }

        .stars {
            color: #ffb300;
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .compare-table-wrapper {
            width: 100%;
            overflow-x: auto;
        }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 600px;
        }

        .compare-table th, .compare-table td {
            padding: 15px 20px;
            border-bottom: 1px solid #edf2f7;
        }

        .compare-table th {
            background-color: var(--grey-light);
            font-weight: 700;
            color: var(--dark);
        }

        .compare-table td strong {
            color: var(--primary);
        }

        /* Token Table */
        .token-card {
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow);
            padding: 40px;
        }

        /* Form section */
        .form-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            background: var(--white);
            border-radius: 24px;
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 1px solid rgba(248,187,208,0.5);
        }

        .form-content {
            padding: 45px;
        }

        .form-sidebar {
            background: linear-gradient(135deg, #8e24aa 0%, #d81b60 100%);
            color: var(--white);
            padding: 45px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 12px 18px;
            border: 1.5px solid #edf2f7;
            background-color: var(--grey-light);
            border-radius: 10px;
            font-size: 1rem;
            color: var(--dark);
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background-color: var(--white);
            box-shadow: 0 0 0 3px var(--primary-light);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .contact-info-list {
            list-style: none;
            margin-top: 30px;
        }

        .contact-info-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 0.95rem;
        }

        .contact-info-list img {
            width: 120px;
            height: auto;
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            margin-top: 10px;
        }

        /* FAQ Accordion */
        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 12px;
            background: var(--white);
            box-shadow: var(--shadow);
            border: 1px solid rgba(248, 187, 208, 0.3);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 25px;
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--primary);
            background-color: var(--light);
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            color: var(--text-muted);
            font-size: 0.95rem;
            border-top: 1px solid transparent;
        }

        .faq-item.active .faq-answer {
            padding: 20px 25px;
            max-height: 500px;
            border-top: 1px solid #edf2f7;
        }

        .faq-icon::before {
            content: '+';
            font-size: 1.3rem;
            color: var(--primary);
            font-weight: bold;
            transition: var(--transition);
        }

        .faq-item.active .faq-icon::before {
            content: '−';
        }

        /* Article / Knowledge base */
        .article-card-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .article-link-item {
            background: var(--white);
            padding: 20px 25px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-decoration: none;
            transition: var(--transition);
        }

        .article-link-item:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-hover);
        }

        .article-link-item h4 {
            color: var(--dark);
            font-size: 1.05rem;
            margin-bottom: 10px;
        }

        .article-link-item span {
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* Training & Certificates */
        .training-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
        }

        .training-card {
            background: var(--white);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid rgba(248, 187, 208, 0.4);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .training-card:hover {
            transform: translateY(-5px);
            background: var(--primary-light);
        }

        .training-card h4 {
            font-size: 0.95rem;
            color: var(--dark);
            margin-top: 10px;
        }

        /* Network Section */
        .network-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
            text-align: center;
        }

        .network-item {
            background: var(--white);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #edf2f7;
            font-weight: 500;
            color: var(--dark);
            box-shadow: var(--shadow);
        }

        /* Footer & Friend Links */
        footer {
            background-color: var(--dark);
            color: #a0aec0;
            padding: 60px 0 30px 0;
            font-size: 0.9rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 30px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #a0aec0;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--primary);
        }

        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 15px;
            margin-top: 15px;
        }

        .friend-links a {
            color: #a0aec0;
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.85rem;
        }

        .friend-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid #4a5568;
            padding-top: 30px;
            text-align: center;
            font-size: 0.85rem;
        }

        .ai-page-home-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
        }

        .ai-page-home-link:hover {
            text-decoration: underline;
        }

        /* Floating Widgets */
        .floating-widgets {
            position: fixed;
            right: 25px;
            bottom: 25px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 999;
        }

        .float-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            position: relative;
        }

        .float-btn:hover {
            transform: scale(1.1);
        }

        .float-btn-kefu:hover::before {
            content: "";
            position: absolute;
            right: 60px;
            bottom: 0;
            width: 150px;
            height: 150px;
            background: var(--white) url('/media-library/kefu.jpg') no-repeat center/contain;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            box-shadow: var(--shadow-hover);
        }

        .float-btn-kefu::after {
            content: "客服";
            position: absolute;
            right: 65px;
            background-color: var(--dark);
            color: var(--white);
            font-size: 0.75rem;
            padding: 4px 8px;
            border-radius: 4px;
            white-space: nowrap;
            opacity: 0;
            transition: var(--transition);
            pointer-events: none;
        }

        .float-btn-kefu:hover::after {
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .capability-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .step-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }
            .solutions-grid {
                grid-template-columns: 1fr;
            }
            .cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .banners-gallery {
                grid-template-columns: 1fr 1fr;
            }
            .training-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .network-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                padding: 20px;
                border-top: 1px solid #edf2f7;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
            }

            .nav-links.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .about-wrapper {
                grid-template-columns: 1fr;
            }

            .form-wrapper {
                grid-template-columns: 1fr;
            }

            .form-sidebar {
                order: -1;
            }

            .cases-grid {
                grid-template-columns: 1fr;
            }

            .banners-gallery {
                grid-template-columns: 1fr;
            }

            .training-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .network-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }