/* CSS Reset & Variables */
        :root {
            --primary: #6366f1;
            --primary-light: #a855f7;
            --primary-glow: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
            --gradient-laser: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(168, 85, 247, 0.05), rgba(236, 72, 153, 0.05));
            --border-laser: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
            --text-main: #0f172a;
            --text-muted: #475569;
            --bg-light: #f8fafc;
            --bg-card: #ffffff;
            --container-w: 1200px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

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

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-light);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Layout & Common Classes */
        .container {
            width: 100%;
            max-width: var(--container-w);
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            background: var(--primary-glow);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            margin-bottom: 15px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Laser Style Cards */
        .laser-card {
            background: var(--bg-card);
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: 16px;
            padding: 30px;
            position: relative;
            transition: var(--transition);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            overflow: hidden;
        }

        .laser-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 4px;
            background: var(--primary-glow);
            opacity: 0;
            transition: var(--transition);
        }

        .laser-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.1), 0 10px 10px -5px rgba(168, 85, 247, 0.04);
            border-color: rgba(168, 85, 247, 0.3);
        }

        .laser-card:hover::before {
            opacity: 1;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--primary-glow);
            color: #ffffff;
            box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
            color: #ffffff;
        }

        .btn-secondary {
            background: #ffffff;
            color: var(--text-main);
            border: 1px solid rgba(226, 232, 240, 1);
        }

        .btn-secondary:hover {
            background: var(--bg-light);
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Header Navigation */
        .header {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            z-index: 1000;
            transition: var(--transition);
        }

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

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .logo-text {
            font-size: 1.25rem;
            font-weight: 800;
            background: var(--primary-glow);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .nav-menu a {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.95rem;
        }

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

        .nav-btn-wrap {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-main);
        }

        /* Hero Section (No Image) */
        .hero {
            background: var(--gradient-laser);
            padding: 100px 0 80px 0;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
            top: -50px;
            right: -50px;
            z-index: 0;
        }

        .hero-badge {
            background: rgba(99, 102, 241, 0.08);
            border: 1px solid rgba(99, 102, 241, 0.2);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 9999px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 25px;
            letter-spacing: -0.5px;
        }

        .hero h1 span {
            background: var(--primary-glow);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 40px auto;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
        }

        /* 2. About & Platform Intro */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .about-text p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .platform-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .platform-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--text-main);
        }

        .platform-feature-item svg {
            color: var(--primary);
            flex-shrink: 0;
        }

        /* Data Indicators */
        .stats-section {
            background: #ffffff;
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            padding: 40px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .stat-card h4 {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--primary-glow);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }

        .stat-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* 3. AIGC Models & 4. One-stop Production */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: rgba(99, 102, 241, 0.1);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .service-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .service-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .model-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }

        .model-tag {
            background: var(--bg-light);
            border: 1px solid rgba(226, 232, 240, 0.8);
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* 5. Industry Solutions */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

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

        .solution-card h4 {
            font-size: 1.15rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        /* 6. Service Network */
        .network-wrap {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(226, 232, 240, 0.8);
        }

        .network-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            align-items: center;
        }

        .network-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .network-item {
            border-left: 3px solid var(--primary);
            padding-left: 15px;
        }

        .network-item h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .network-item p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* Map styling (using CSS art representation instead of external iframe/image for performance & visual stability) */
        .network-map-art {
            height: 300px;
            background: radial-gradient(circle at center, rgba(99, 102, 241, 0.05) 0%, rgba(248, 250, 252, 1) 70%);
            border: 1px dashed rgba(99, 102, 241, 0.3);
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .network-map-art .map-pulse {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--primary);
            border-radius: 50%;
            box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 12px rgba(99, 102, 241, 0);
            }
            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
            }
        }

        /* 7. Workflow Steps */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
        }

        .step-card {
            text-align: center;
            position: relative;
        }

        .step-num {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-glow);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 15px auto;
        }

        .step-card h4 {
            font-size: 1rem;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .step-card p {
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        /* 8. Technical Standards */
        .tech-standards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* 9. Case Center */
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .case-image-container {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 15px;
            aspect-ratio: 16/9;
            background: var(--bg-light);
        }

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

        .laser-card:hover .case-image-container img {
            transform: scale(1.05);
        }

        /* 10. Evaluation Table */
        .evaluation-section {
            background: var(--gradient-laser);
        }

        .table-responsive {
            width: 100%;
            overflow-x: auto;
            border-radius: 12px;
            border: 1px solid rgba(226, 232, 240, 1);
            background: #ffffff;
        }

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

        .eval-table th, .eval-table td {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        }

        .eval-table th {
            background: var(--bg-light);
            font-weight: 700;
            color: var(--text-main);
        }

        .eval-table tr:last-child td {
            border-bottom: none;
        }

        .badge-score {
            display: inline-flex;
            align-items: center;
            background: #fef08a;
            color: #854d0e;
            padding: 4px 10px;
            border-radius: 9999px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        /* 11. Smart Match Maker */
        .match-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(226, 232, 240, 0.8);
            max-width: 800px;
            margin: 0 auto;
        }

        .match-form-group {
            margin-bottom: 25px;
        }

        .match-form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .match-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .match-option-btn {
            border: 1px solid rgba(226, 232, 240, 1);
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            background: #ffffff;
            font-weight: 500;
        }

        .match-option-btn:hover {
            border-color: var(--primary);
            background: rgba(99, 102, 241, 0.02);
        }

        .match-option-btn.active {
            border-color: var(--primary);
            background: rgba(99, 102, 241, 0.08);
            color: var(--primary);
            font-weight: 700;
        }

        .match-result {
            margin-top: 30px;
            padding: 20px;
            background: var(--bg-light);
            border-radius: 8px;
            border-left: 4px solid var(--primary);
            display: none;
        }

        /* 12. Token Price Table */
        .price-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

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

        .price-value {
            font-size: 2.2rem;
            font-weight: 800;
            margin: 20px 0;
            color: var(--primary);
        }

        /* 13 & 14. Training */
        .training-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

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

        .training-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 15px 0 8px 0;
        }

        .training-badge {
            display: inline-block;
            background: rgba(168, 85, 247, 0.08);
            color: var(--primary-light);
            border: 1px solid rgba(168, 85, 247, 0.2);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
        }

        /* 15 & 17. Help & Self-troubleshooting */
        .trouble-section {
            background: var(--bg-light);
        }

        .trouble-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .trouble-step-list {
            list-style: none;
            margin-top: 15px;
        }

        .trouble-step-list li {
            padding: 8px 0;
            border-bottom: 1px dashed rgba(226, 232, 240, 1);
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* 18. AI Wiki */
        .wiki-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .wiki-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .wiki-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* 16. FAQ Accordion */
        .faq-wrap {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #ffffff;
            border: 1px solid rgba(226, 232, 240, 1);
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-question {
            padding: 20px 24px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.3rem;
            color: var(--primary);
            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;
            padding: 0 24px;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-bottom: 20px;
        }

        /* 19. News Section & Articles */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .news-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        /* 20 & 21. Contact & Agency */
        .contact-section {
            background: var(--gradient-laser);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .contact-info-wrap {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .agency-box {
            background: rgba(99, 102, 241, 0.04);
            border: 1px dashed rgba(99, 102, 241, 0.3);
            border-radius: 16px;
            padding: 30px;
        }

        .agency-box h3 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .agency-benefits {
            list-style: none;
            margin-top: 15px;
        }

        .agency-benefits li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .agency-benefits svg {
            color: #22c55e;
        }

        .form-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(226, 232, 240, 1);
        }

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

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

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

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testi-user {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }

        .testi-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--gradient-laser);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--primary);
        }

        .testi-meta h4 {
            font-size: 0.95rem;
            font-weight: 700;
        }

        .testi-meta p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Footer */
        .footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 60px 0 30px 0;
            border-top: 1px solid #1e293b;
        }

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

        .footer-logo-desc p {
            margin-top: 15px;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .footer-column h4 {
            color: #ffffff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #94a3b8;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        .friend-links-box {
            margin-top: 20px;
            border-top: 1px dashed #1e293b;
            padding-top: 20px;
        }

        .friend-links-title {
            color: #ffffff;
            font-size: 0.85rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .friend-links-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .friend-links-wrap a {
            color: #64748b;
            font-size: 0.85rem;
        }

        .friend-links-wrap a:hover {
            color: #ffffff;
        }

        /* Float Widget */
        .float-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .widget-item {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #ffffff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .widget-item:hover {
            background: var(--primary);
            color: #ffffff;
        }

        .widget-item svg {
            width: 24px;
            height: 24px;
        }

        .widget-kefu-pop {
            position: absolute;
            bottom: 60px;
            right: 0;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            padding: 20px;
            text-align: center;
            display: none;
            width: 220px;
            border: 1px solid rgba(226, 232, 240, 1);
        }

        .widget-kefu-pop img {
            width: 140px;
            height: 140px;
            margin: 0 auto 10px auto;
        }

        .widget-kefu-pop p {
            color: var(--text-main);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .widget-item:hover .widget-kefu-pop {
            display: block;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .services-grid, .news-grid, .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .steps-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .training-grid, .solutions-grid, .wiki-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-grid, .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: #ffffff;
                border-bottom: 1px solid rgba(226, 232, 240, 1);
                padding: 20px;
                gap: 15px;
            }
            .nav-menu.show {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            .services-grid, .news-grid, .testimonials-grid, .steps-grid, .training-grid, .solutions-grid, .wiki-grid, .stats-grid, .network-grid, .price-grid, .trouble-grid {
                grid-template-columns: 1fr;
            }
            .section-header h2 {
                font-size: 1.8rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }