 .service-overview {
            background-color: var(--bg-light, #F8FAFC);
        }

        .page-hero {
            padding-top: 140px;
            padding-bottom: 80px;
            background: linear-gradient(135deg, rgba(15, 32, 39, 0.85), rgba(32, 58, 67, 0.8), rgba(44, 83, 100, 0.7)),
                url('https://images.unsplash.com/photo-1565610222536-ef125c59da2e?auto=format&fit=crop&w=1200&q=40');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
            color: white;
        }

        .page-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            color: white;
        }

        .breadcrumb {
            color: #94A3B8;
            font-size: 0.95rem;
        }

        .breadcrumb span {
            color: var(--primary);
            font-weight: 600;
        }

        .lead-copy {
            max-width: 800px;
            margin: 0 auto 60px auto;
        }

        .service-block {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #E2E8F0;
            margin-bottom: 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
        }

        .service-block.reverse .service-img {
            order: 2;
        }

        .service-block.reverse .service-content {
            order: 1;
        }

        .service-img {
            position: relative;
            min-height: 400px;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }

        .service-content {
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: #FFF7ED;
            color: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
        }

        .service-content p {
            margin-bottom: 25px;
            color: var(--text-main);
            text-align: justify;
        }

        .spec-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 30px;
            background: var(--bg-light);
            padding: 20px;
            border-radius: 8px;
        }

        .spec-item {
            font-size: 0.9rem;
            color: var(--secondary);
            font-weight: 500;
        }

        .spec-item i {
            color: #22C55E;
            margin-right: 8px;
        }

        .capacity-section {
            background: var(--secondary);
            color: white;
            text-align: center;
        }

        .capacity-section p {
            color: #CBD5E1;
            margin-bottom: 40px;
        }

        .capacity-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .cap-item span {
            display: block;
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            font-family: 'Oswald', sans-serif;
        }

        .cap-item p {
            color: #94A3B8;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .cta-box {
            background: var(--primary);
            color: white;
            padding: 60px;
            border-radius: 16px;
            text-align: center;
            margin-top: -80px;
            position: relative;
            z-index: 2;
            box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
        }

        .cta-box h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        @media (max-width: 992px) {
            .service-block {
                grid-template-columns: 1fr;
            }

            .service-block.reverse .service-img {
                order: -1;
            }

            .service-img {
                min-height: 300px;
            }

            .service-content {
                padding: 35px;
            }

            .spec-grid {
                grid-template-columns: 1fr;
            }

            .capacity-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 576px) {
            .page-hero h1 {
                font-size: 2.4rem;
            }

            .capacity-grid {
                grid-template-columns: 1fr;
            }
        }