        /* ----- 全局重置 & 基础 ----- */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #005bac;
            --primary-dark: #004a8f;
            --primary-light: #e8f0fa;
            --secondary: #009a44;
            --secondary-light: #e6f5ed;
            --text-dark: #1a2a3a;
            --text-muted: #5a6a7a;
            --bg-light: #f6f9fc;
            --white: #ffffff;
            --shadow: 0 8px 30px rgba(0, 91, 172, 0.12);
            --radius: 12px;
            --max-width: 1200px;
            --transition: 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--text-dark);
            background: var(--white);
            line-height: 1.7;
            font-size: 16px;
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: color var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 48px;
            height: 4px;
            background: var(--secondary);
            border-radius: 4px;
        }
        .section-title-wrapper {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-title-wrapper .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .section-subtitle {
            color: var(--text-muted);
            font-size: 17px;
            margin-top: 8px;
        }

        .text-center {
            text-align: center;
        }

        /* ----- 导航栏 ----- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 14px 0;
            transition: background var(--transition), box-shadow var(--transition);
            background: transparent;
        }
        .navbar.scrolled {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar .logo-img {
            height: 40px;
            width: auto;
            display: block;
            border-radius: 6px;
            /* 透明导航叠在深色 Banner 上：Logo 显示为白色 */
            filter: brightness(0) invert(1);
            transition: filter var(--transition), opacity 0.2s ease;
        }
        /* CMS logo 未就绪前不显示，避免 /images/logo.png 404 闪破图 */
        .navbar .logo-img.logo-pending {
            opacity: 0;
            min-width: 100px;
        }
        .navbar.scrolled .logo-img {
            filter: none;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
            align-items: center;
        }
        .nav-links a {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            font-size: 15px;
            transition: color var(--transition);
            position: relative;
        }
        .nav-links a:not(.nav-cta-btn)::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width var(--transition);
        }
        .nav-links a:not(.nav-cta-btn):hover::after {
            width: 100%;
        }
        .nav-links a:not(.nav-cta-btn):hover {
            color: var(--white);
        }
        .navbar.scrolled .nav-links a:not(.nav-cta-btn) {
            color: var(--text-dark);
        }
        .navbar.scrolled .nav-links a:not(.nav-cta-btn):hover {
            color: var(--primary);
        }

        .nav-cta-btn {
            background: var(--secondary);
            color: var(--white) !important;
            padding: 8px 22px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px !important;
            transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
            box-shadow: 0 4px 12px rgba(0, 154, 68, 0.30);
            white-space: nowrap;
        }
        .nav-cta-btn:hover {
            background: #00803a;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(0, 154, 68, 0.40);
            color: var(--white) !important;
        }
        .navbar.scrolled .nav-cta-btn {
            background: var(--secondary);
            color: var(--white) !important;
        }
        .navbar.scrolled .nav-cta-btn:hover {
            background: #00803a;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }
        .hamburger span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--white);
            border-radius: 4px;
            transition: var(--transition);
        }
        .navbar.scrolled .hamburger span {
            background: var(--primary);
        }

        /* ----- Banner (全屏) ----- */
        .banner {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            background-image: linear-gradient(135deg, rgba(0, 91, 172, 0.82), rgba(0, 154, 68, 0.60)),
                url('https://picsum.photos/1920/1080?random=10');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            text-align: center;
            padding: 100px 24px;
        }
        .banner-content {
            max-width: 800px;
            color: var(--white);
            position: relative;
            z-index: 2;
        }
        .banner-content h1 {
            font-size: 56px;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 12px;
            text-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
        }
        .banner-content h1 span {
            color: #a8e6c0;
        }
        .banner-content p {
            font-size: 20px;
            opacity: 0.92;
            margin-bottom: 28px;
            font-weight: 300;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
        }
        .banner-scroll-indicator {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.7);
            font-size: 28px;
            animation: bounceDown 2s infinite;
            cursor: pointer;
        }
        @keyframes bounceDown {
            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(10px);
            }
        }

        /* ----- 查单区：时钟 + 搜索框（底边固定，展开只向上增高） ----- */
        .banner-search-block {
            position: absolute;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            width: min(560px, 90%);
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 12px;
        }
        .banner-clocks {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .banner-clocks .clock-chip {
            flex: 1 1 0;
            min-width: 0;
            background: rgba(255, 255, 255, 0.16);
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 12px;
            padding: 8px 12px;
            text-align: left;
            backdrop-filter: blur(4px);
            color: #fff;
        }
        .banner-clocks .clock-chip span {
            display: block;
            font-size: 11px;
            letter-spacing: 0.02em;
            opacity: 0.85;
            margin-bottom: 2px;
        }
        .banner-clocks .clock-chip strong {
            font-size: 14px;
            font-weight: 600;
            font-variant-numeric: tabular-nums;
        }
        .search-wrapper {
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.20);
            backdrop-filter: blur(4px);
            transition: min-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                padding 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-radius 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.35s ease;
            padding: 6px 10px 6px 18px;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: center;
            min-height: 48px;
            overflow: hidden;
        }
        .search-wrapper.expanded {
            border-radius: 24px;
            padding: 16px 20px 12px 20px;
            min-height: 140px;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 16px 60px rgba(0, 0, 0, 0.25);
        }
        .search-input-area {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-wrap: nowrap;
            width: 100%;
            gap: 12px;
        }
        .search-wrapper input[type="text"] {
            flex: 1;
            min-width: 0;
            width: auto;
            border: none;
            outline: none;
            font-size: 15px;
            padding: 8px 4px;
            background: transparent;
            color: var(--text-dark);
            text-align: left;
            line-height: 36px;
            height: 36px;
        }
        .search-wrapper input[type="text"]::placeholder {
            color: #99a;
            font-weight: 400;
            text-align: left;
            opacity: 1;
        }
        .search-btn {
            background: var(--secondary);
            color: var(--white);
            border: none;
            padding: 0 20px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: background var(--transition), transform var(--transition);
            white-space: nowrap;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            line-height: 1;
            height: 36px;
            margin-left: 4px;
        }
        .search-btn i {
            font-size: 15px;
            line-height: 1;
        }
        .search-btn:hover {
            background: #00803a;
            transform: scale(1.02);
        }
        .search-hint {
            width: 100%;
            color: var(--text-muted);
            font-size: 13px;
            margin-top: 0;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.3s ease 0.1s, max-height 0.3s ease, margin-top 0.3s ease, padding-top 0.3s ease;
            line-height: 1.5;
            border-top: 0 solid #eee;
            padding-top: 0;
            text-align: center;
        }
        .search-wrapper.expanded .search-hint {
            opacity: 1;
            max-height: 80px;
            margin-top: 8px;
            border-top-width: 1px;
            padding-top: 8px;
        }

        .news-more {
            text-align: center;
            margin-top: 36px;
        }
        .btn-learn-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: var(--white) !important;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            box-shadow: 0 6px 18px rgba(0, 91, 172, 0.25);
            transition: background var(--transition), transform var(--transition);
        }
        .btn-learn-more:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            color: var(--white) !important;
        }

        /* ===== About Us 区域 (图片轮播, 无箭头) ===== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .about-text p {
            color: var(--text-muted);
            font-size: 16.5px;
            margin-bottom: 16px;
        }
        .about-text p:last-child {
            margin-bottom: 0;
        }

        /* 轮播容器 */
        .carousel-container {
            position: relative;
            width: 100%;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: #f0f0f0;
            aspect-ratio: 4 / 3;
        }
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }
        .carousel-slide {
            min-width: 100%;
            height: 100%;
        }
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* 矩形导航点 (无箭头) */
        .carousel-indicators {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 5;
        }
        .carousel-dot {
            width: 28px;
            height: 6px;
            border-radius: 3px;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            border: none;
            padding: 0;
        }
        .carousel-dot.active {
            background: var(--secondary);
            transform: scaleX(1.2);
        }
        .carousel-dot:hover {
            background: rgba(255,255,255,0.9);
        }

        /* ----- News 模块 ----- */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .news-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px 22px;
            box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
            border: 1px solid rgba(15, 23, 42, 0.06);
            text-decoration: none;
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
            border-color: rgba(0, 154, 68, 0.22);
        }
        .news-card .news-date {
            font-size: 13px;
            color: var(--secondary);
            font-weight: 600;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
        }
        .news-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
            transition: color var(--transition);
        }
        .news-card:hover h3 {
            color: var(--primary-dark);
        }
        .news-card p {
            color: var(--text-muted);
            font-size: 14.5px;
            margin-bottom: 0;
        }
        .news-card .news-tag {
            display: inline-block;
            background: var(--secondary-light);
            color: var(--secondary);
            font-size: 12px;
            font-weight: 600;
            padding: 2px 14px;
            border-radius: 20px;
            margin-top: 12px;
        }

        /* ----- 服务内容 (卡片网格) ----- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .service-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 24px 28px;
            box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
            text-align: left;
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
            border: 1px solid rgba(15, 23, 42, 0.06);
        }
        .service-card:hover {
            transform: translateY(-4px);
            background: #f7fbf8;
            border-color: rgba(0, 154, 68, 0.28);
            box-shadow: 0 14px 36px rgba(0, 154, 68, 0.12);
        }
        /* icon 块与标题左右排列，整体与下方描述左对齐 */
        .service-card .service-head {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
        }
        .service-card .icon {
            font-size: 30px;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            flex-shrink: 0;
            background: var(--primary-light);
            width: 64px;
            height: 64px;
            border-radius: 16px;
            transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
        }
        .service-card .icon svg {
            width: 32px;
            height: 32px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .service-card:hover .icon {
            transform: scale(1.06);
            background: var(--secondary-light);
            color: var(--secondary);
            box-shadow: 0 8px 20px rgba(0, 154, 68, 0.2);
        }
        .service-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin: 0;
            color: var(--primary);
            display: block;
            position: relative;
            line-height: 1.3;
            text-align: left;
            transition: color var(--transition);
        }
        .service-card h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: var(--secondary);
            border-radius: 2px;
            transition: width 0.28s ease;
        }
        .service-card:hover h3 {
            color: var(--secondary);
        }
        .service-card:hover h3::after {
            width: 28px;
        }
        .service-card p {
            color: var(--text-muted);
            font-size: 14.5px;
            margin: 0;
            text-align: left;
        }

        /* ----- 收费 & 免费送货 (双栏) ----- */
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .pricing-box {
            background: linear-gradient(180deg, #f7fafc 0%, var(--white) 42%);
            border-radius: var(--radius);
            padding: 36px 32px;
            box-shadow: 0 6px 28px rgba(15, 23, 42, 0.06);
            border: 1px solid rgba(15, 23, 42, 0.06);
        }
        .pricing-box.green {
            background: linear-gradient(180deg, #f3faf6 0%, var(--white) 42%);
        }
        .pricing-box h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .pricing-box.green h3 {
            color: var(--secondary);
        }
        .pricing-box h3 i {
            font-size: 20px;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            color: var(--primary);
            flex-shrink: 0;
        }
        .pricing-box.green h3 i {
            background: var(--secondary-light);
            color: var(--secondary);
        }
        .pricing-box .price-big {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
            display: inline-block;
            margin-right: 4px;
        }
        .pricing-box .price-big.green {
            color: var(--secondary);
        }
        .pricing-box .price-desc {
            color: var(--text-muted);
            font-size: 15px;
            margin-top: 4px;
        }
        .pricing-box ul {
            list-style: none;
            margin-top: 16px;
        }
        .pricing-box ul li {
            padding: 6px 0;
            color: var(--text-muted);
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .pricing-box ul li i {
            color: var(--secondary);
            font-size: 18px;
            flex-shrink: 0;
        }
        .city-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 12px;
        }
        .city-tags span {
            background: var(--secondary-light);
            color: var(--secondary);
            padding: 4px 18px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        /* ----- 注意事项 ----- */
        .notes-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px 32px;
            background: linear-gradient(180deg, #f7fafc 0%, var(--bg-light) 100%);
            border-radius: var(--radius);
            padding: 40px 44px;
            border: 1px solid rgba(15, 23, 42, 0.06);
            box-shadow: 0 6px 28px rgba(15, 23, 42, 0.04);
        }
        .notes-list li {
            list-style: none;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 8px 0;
            color: var(--text-dark);
            font-size: 15px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }
        .notes-list li:last-child {
            border-bottom: none;
        }
        .notes-list li i {
            color: var(--secondary);
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .notes-list li strong {
            color: var(--primary);
            font-weight: 600;
        }

        /* ----- 联系我们 ----- */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .contact-item {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px 20px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform var(--transition), box-shadow var(--transition);
        }
        .contact-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(0, 91, 172, 0.13);
        }
        .contact-item .icon {
            font-size: 32px;
            color: var(--primary);
            display: inline-block;
            background: var(--primary-light);
            width: 64px;
            height: 64px;
            line-height: 64px;
            border-radius: 50%;
            margin-bottom: 12px;
        }
        .contact-item h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }
        .contact-item p {
            font-size: 14px;
            color: var(--text-muted);
            word-break: break-all;
            margin-bottom: 6px;
        }
        .contact-item a {
            font-size: 14px;
            color: var(--primary);
            word-break: break-all;
        }
        .contact-item a:hover {
            color: var(--secondary);
        }

        /* ----- 页脚 ----- */
        .footer {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 32px 0;
            text-align: center;
            font-size: 14px;
            border-top: 3px solid var(--secondary);
        }
        .footer span {
            color: var(--white);
            font-weight: 600;
        }
        .footer-copy {
            margin: 0;
            line-height: 1.6;
        }
        .footer-sep {
            margin: 0 0.45em;
            color: rgba(255, 255, 255, 0.28) !important;
            font-weight: 400 !important;
        }
        /* 内部入口：跟版权同一行，低对比、不抢主视觉 */
        .footer-admin {
            color: rgba(255, 255, 255, 0.32);
            font-size: 12px;
            font-weight: 400;
            text-decoration: none;
            letter-spacing: 0.02em;
            transition: color 0.2s ease;
        }
        .footer-admin:hover {
            color: rgba(255, 255, 255, 0.62);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-grid {
                gap: 32px;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 56px 0;
            }
            .section-title {
                font-size: 26px;
            }

            .navbar .container {
                padding: 0 16px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                padding: 20px 24px;
                gap: 16px;
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
                border-radius: 0 0 var(--radius) var(--radius);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a:not(.nav-cta-btn) {
                color: var(--text-dark) !important;
                font-size: 16px;
            }
            .nav-links a:not(.nav-cta-btn)::after {
                background: var(--secondary);
            }
            .nav-cta-btn {
                align-self: center;
                width: 100%;
                text-align: center;
                padding: 12px;
            }
            .hamburger {
                display: flex;
            }

            .banner {
                padding: 96px 16px 180px;
                background-attachment: scroll;
            }
            .banner-content h1 {
                font-size: 34px;
            }
            .banner-content p {
                font-size: 17px;
                margin-bottom: 20px;
            }

            .banner-search-block {
                bottom: 56px;
                width: min(560px, 94%);
                gap: 8px;
            }
            .banner-clocks .clock-chip {
                padding: 6px 10px;
            }
            .banner-clocks .clock-chip strong {
                font-size: 12px;
            }
            .search-wrapper {
                padding: 5px 8px 5px 14px;
            }
            .search-wrapper.expanded {
                min-height: 120px;
                padding: 14px 14px 10px;
            }
            .search-btn {
                padding: 0 14px;
                font-size: 13px;
            }
            .banner-scroll-indicator {
                display: none;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .carousel-container {
                aspect-ratio: 4 / 3;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .service-card {
                padding: 24px 16px 20px;
            }
            .service-card .service-head {
                gap: 12px;
                margin-bottom: 10px;
                flex-direction: row;
                align-items: center;
            }
            .service-card .icon {
                width: 48px;
                height: 48px;
                font-size: 22px;
                border-radius: 12px;
            }
            .service-card .icon svg {
                width: 24px;
                height: 24px;
            }
            .service-card h3 {
                font-size: 15px;
            }
            .service-card p {
                font-size: 13.5px;
            }

            .pricing-box {
                padding: 28px 20px;
            }
            .pricing-box .price-big {
                font-size: 28px;
            }

            .notes-list {
                grid-template-columns: 1fr;
                padding: 24px 20px;
            }
            .notes-list li {
                font-size: 14px;
            }

            .contact-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .contact-item {
                padding: 20px 14px;
            }
            .contact-item .icon {
                width: 50px;
                height: 50px;
                line-height: 50px;
                font-size: 24px;
            }

            .banner-scroll-indicator {
                display: none;
            }

            .navbar .logo-img {
                height: 34px;
            }
        }

        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .contact-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .banner-content h1 {
                font-size: 28px;
            }
            .banner-content p {
                font-size: 16px;
            }
            .section-title {
                font-size: 22px;
            }
            .container {
                padding: 0 16px;
            }
        }
    