 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #F8FAFE;
            color: #1A2C3E;
            overflow-x: hidden;
        }

        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #E9ECF3;
        }
        ::-webkit-scrollbar-thumb {
            background: #0066B3;
            border-radius: 5px;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
        }

        h1, h2, h3, .logo-font {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: 3rem;
            margin-bottom: 1.2rem;
            color: #0A2540;
            position: relative;
            display: inline-block;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #0066B3, #00A3FF);
            border-radius: 3px;
        }
        
        .section-subtitle {
            text-align: center;
            color: #5A6E82;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 1rem auto 0;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0066B3, #0088D4);
            color: white;
            padding: 14px 38px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,102,179,0.3);
            position: relative;
            overflow: hidden;
            min-width: 160px;
        }
        
        .btn-primary:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        
        .btn-primary:hover:before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,102,179,0.4);
        }
        
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 2px solid #0066B3;
            color: #0066B3;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
        }
        
        .btn-outline:hover {
            background: #0066B3;
            color: white;
            transform: translateY(-2px);
        }
        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            min-width: 160px;
        }

        .btn-outline-light:hover {
            background: white;
            color:#0066B3;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
            border-color: white;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Header */
   
        /* Header - начальное состояние (relative, поверх контента) */
.main-header {
    position: relative;
   background: rgba(10, 37, 64, 0.95);
            backdrop-filter: blur(12px);
    width: 100%;
    transition: all 0.4s ease;
    z-index: 1000;
    padding: 18px 0;
}

/* Header - фиксированное состояние (после скролла) */
.main-header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo a {
            font-size: 1.6rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            font-family: 'Playfair Display', serif;
        }
        
        .logo span {
            color: #FFD966;
        }
        
        .nav-menu {
            display: flex;
            gap: 28px;
            list-style: none;
            flex-wrap: wrap;
        }
        
        .nav-menu a {
            color: #F0F4FA;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            font-size:18px;
        }
        
        .nav-menu a:hover {
            color: #FFD966;
        }
        
        .header-phone a {
            color: white;
            text-decoration: none;
            font-weight: 600;
        }
        
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: white;
            cursor: pointer;
        }
        
        @media (max-width: 992px) {
            .nav-menu, .header-phone {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .nav-menu.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: #0A2540;
                padding: 30px;
                gap: 20px;
                text-align: center;
                z-index: 999;
            }
        }
/*страница услуги*/

  /* Табличные стили */
        .rates-table-wrapper {
            overflow-x: auto;
            margin: 30px 0 20px;
            border-radius: 28px;
            background: white;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        }
        .rates-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .rates-table th, .rates-table td {
            padding: 18px 20px;
            text-align: left;
            border-bottom: 1px solid #E9ECF3;
        }
        .rates-table th {
            background: #F0F7FF;
            color: #0A2540;
            font-weight: 700;
            font-size: 1rem;
        }
        .rates-table tr:last-child td {
            border-bottom: none;
        }
        .note-text {
            font-size: 0.85rem;
            color: #6c7a8a;
            margin-top: 12px;
            background: #F4F7FC;
            padding: 14px 20px;
            border-radius: 20px;
        }
        .badge-coeff {
            background: #FFD96620;
            color: #c47d00;
            font-weight: 600;
            border-radius: 30px;
            padding: 2px 12px;
            font-size: 0.75rem;
            display: inline-block;
        }
        .price-highlight {
            font-weight: 700;
            color: #0066B3;
        }
        .info-grid-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .tariff-card {
            background: white;
            border-radius: 28px;
            padding: 25px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            transition: 0.3s;
            border: 1px solid rgba(0,102,179,0.1);
        }
        .tariff-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #0A2540;
        }
        .tariff-price {
            font-size: 2rem;
            font-weight: 800;
            color: #0066B3;
            margin: 15px 0;
        }
        .feature-block {
            padding: 70px 0;
            background: white;
        }
        .bg-light-accent {
            background: #F8FAFE;
        }
        footer {
            background: #051E30;
            padding: 30px 0;
            text-align: center;
            color: #8AA3B9;
        }
        hr {
            margin: 20px 0;
            border-color: #e2e8f0;
        }
        .small-note {
            font-size: 0.8rem;
            color: #5A6E82;
            margin-top: 5px;
        }
/*конец блока услуг*/

        /* Hero Slider */
        .hero {
            margin-top: 0px;
            position: relative;
            height: 90vh;
            min-height: 700px;
            overflow: hidden;
        }
        
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            filter: brightness(0.5);
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,40,70,0.2) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        
        .hero-content h1 {
            font-size: 4.2rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 800px;
            margin-bottom: 35px;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .hero-buttons {
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 3;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .dot.active, .dot:hover {
            background: #FFD966;
            transform: scale(1.2);
        }
        
        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2.5rem; }
        }

        /* ===== БЛОКИ С КАРТИНКОЙ И ТЕКСТОМ ===== */
        .feature-block {
            padding: 100px 0;
        }
        .feature-block:nth-child(even) {
            background: white;
        }
        .feature-block:nth-child(odd) {
            background: linear-gradient(135deg, #F8FAFE, #FFFFFF);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .feature-image img {
            width: 100%;
            border-radius: 32px;
            box-shadow: 0 25px 45px rgba(0,0,0,0.12);
            transition: transform 0.4s;
        }
        .feature-image img:hover {
            transform: scale(1.02);
        }
        .feature-text h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #0A2540;
        }
        .feature-text p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #2C3E50;
            margin-bottom: 25px;
        }
        .feature-list {
            list-style: none;
            margin: 25px 0;
        }
        .feature-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .feature-list li i {
            color: #0066B3;
            font-size: 1.2rem;
            width: 28px;
        }
        .btn-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        .inline-form {
            background: white;
            padding: 30px;
            border-radius: 28px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            margin-top: 25px;
        }
        .inline-form input, .inline-form textarea {
            width: 100%;
            padding: 12px 18px;
            margin-bottom: 15px;
            border: 1px solid #E2E8F0;
            border-radius: 50px;
            font-family: inherit;
            outline: none;
            transition: 0.3s;
        }
        .inline-form input:focus, .inline-form textarea:focus {
            border-color: #0066B3;
            box-shadow: 0 0 0 3px rgba(0,102,179,0.1);
        }
        @media (max-width: 992px) {
            .feature-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            .feature-list li {
                justify-content: center;
            }
            .btn-group {
                justify-content: center;
            }
        }

        /* Services Grid */
        .services-block {
            padding: 100px 0;
            background: linear-gradient(135deg, #FFFFFF 0%, #F5F9FF 100%);
        }
        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 50px;
        }
        .service-card {
            background: white;
            border-radius: 28px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,102,179,0.1);
        }
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 50px rgba(0,102,179,0.15);
        }
        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #EFF6FF, #E3F0FF);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #0066B3;
        }
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        /* NEWS BLOCK */
        .news-block {
            padding: 100px 0;
            background: #FFFFFF;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .news-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            cursor: pointer;
        }
        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 45px rgba(0,102,179,0.15);
        }
        .news-image {
            height: 220px;
            overflow: hidden;
        }
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .news-card:hover .news-image img {
            transform: scale(1.05);
        }
        .news-content {
            padding: 25px;
        }
        .news-date {
            display: inline-block;
            background: #EFF6FF;
            color: #0066B3;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 50px;
            margin-bottom: 15px;
        }
        .news-card h3 {
            font-size: 1.35rem;
            margin-bottom: 12px;
            color: #0A2540;
            line-height: 1.4;
        }
        .news-card p {
            color: #5A6E82;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .news-link {
            color: #0066B3;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s;
        }
        .news-link:hover {
            gap: 12px;
        }
        .news-all-link {
            text-align: center;
            margin-top: 50px;
        }
        
        /* ===== СИНИЙ БЛОК ДЛЯ ДЕРЕВНИ ХАУСБОТОВ (яркий акцент) ===== */
        .houseboats-blue-block {
            padding: 100px 0;
            background: linear-gradient(135deg, #0A2540 0%, #0D3B5E 100%);
            color: white;
        }
        .houseboats-blue-block .section-title h2 {
            color: white;
        }
        .houseboats-blue-block .section-title h2:after {
            background: #FFD966;
        }
        .houseboats-blue-block .section-subtitle {
            color: rgba(255,255,255,0.9);
        }
        .houseboats-blue-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .houseboats-blue-text p {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 25px;
            color: rgba(255,255,255,0.95);
        }
        .houseboats-blue-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 35px 0;
        }
        .hb-blue-feature {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(4px);
            padding: 12px 24px;
            border-radius: 60px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            color: white;
        }
        .hb-blue-feature i {
            font-size: 1.3rem;
            color: #FFD966;
        }
        .houseboats-blue-image img {
            width: 100%;
            border-radius: 32px;
            box-shadow: 0 25px 45px rgba(0,0,0,0.25);
            border: 3px solid rgba(255,255,255,0.2);
        }
        @media (max-width: 992px) {
            .houseboats-blue-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .houseboats-blue-features {
                justify-content: center;
            }
        }

        /* ===== СВЕТЛЫЙ БЛОК ДЛЯ ПРОФЕССИОНАЛЬНОЙ МОЙКИ (нейтральный) ===== */
        .washing-light-block {
            padding: 100px 0;
            background: #F8FAFE;
        }
        .washing-light-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .washing-light-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        .wash-light-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            background: #F0F7FF;
            padding: 12px 20px;
            border-radius: 50px;
        }
        .wash-light-feature i {
            font-size: 1.3rem;
            color: #0066B3;
        }
        .washing-light-image img {
            width: 100%;
            border-radius: 32px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .price-badge-light {
            display: inline-block;
            background: #EFF6FF;
            color: #0066B3;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            margin-top: 15px;
        }
        @media (max-width: 992px) {
            .washing-light-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .washing-light-features {
                justify-content: center;
            }
        }

        /* Sales cards */
        .sales-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .sales-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            transition: 0.4s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .sales-card:hover {
            transform: translateY(-10px);
        }
        .sales-img {
            width: 100%;
            height: 220px;
            overflow: hidden;
        }
        .sales-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .sales-card:hover .sales-img img {
            transform: scale(1.05);
        }
        .sales-content {
            padding: 25px;
            text-align: center;
        }
        .price {
            color: #0066B3;
            font-weight: 700;
            font-size: 1.3rem;
            margin: 15px 0;
        }
        
        /* Gallery */
        .gallery-section {
            padding: 80px 0;
            background: #FFFFFF;
        }
        .gallery-masonry {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            height: 260px;
            transition: transform 0.4s, box-shadow 0.4s;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(0,102,179,0.2);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s;
        }
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        @media (max-width: 1024px) {
            .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 640px) {
            .gallery-masonry { grid-template-columns: 1fr; }
        }
        
        .btn-catalog {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: transparent;
            border: 2px solid #0066B3;
            color: #0066B3;
            padding: 14px 40px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .btn-catalog:hover {
            background: #0066B3;
            color: white;
            transform: translateY(-2px);
        }
        .catalog-btn-wrap {
            text-align: center;
            margin-top: 50px;
        }

        /* Стоянка (тарифы) */
        .rates-block {
            padding: 80px 0;
            background: #EFF6FF;
        }
        .rates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .rate-card {
            background: white;
            border-radius: 28px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .rate-card:hover {
            transform: translateY(-8px);
        }
        .rate-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        .rate-card .price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0066B3;
            margin: 20px 0;
        }
        
        /* Блоки для гостевых домов и ресторана */
        .guest-restaurant-block {
            padding: 100px 0;
            background: #FFFFFF;
        }
        .guest-restaurant-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }
        .guest-restaurant-grid:last-child {
            margin-bottom: 0;
        }
        .guest-restaurant-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #0A2540;
        }
        .guest-restaurant-text p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #2C3E50;
            margin-bottom: 20px;
        }
        .guest-restaurant-text .feature-list {
            margin: 20px 0;
        }
        .guest-restaurant-image img {
            width: 100%;
            border-radius: 32px;
            box-shadow: 0 25px 45px rgba(0,0,0,0.12);
            transition: transform 0.4s;
        }
        .guest-restaurant-image img:hover {
            transform: scale(1.02);
        }
        @media (max-width: 992px) {
            .guest-restaurant-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            .guest-restaurant-text .feature-list li {
                justify-content: center;
            }
        }
        
        /* Contacts */
        .contacts-modern {
            background: #0A2540;
            padding: 80px 0;
            color: white;
        }
        .contacts-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        .contact-info p {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .contact-info i {
            width: 35px;
            font-size: 1.3rem;
        }
        .form-modern input, .form-modern textarea {
            width: 100%;
            padding: 14px 20px;
            margin-bottom: 20px;
            border-radius: 12px;
            border: none;
            background: rgba(255,255,255,0.1);
            color: white;
        }
        .form-modern input::placeholder, .form-modern textarea::placeholder {
            color: rgba(255,255,255,0.7);
        }
        .map-modern {
            border-radius: 24px;
            overflow: hidden;
            height: 300px;
            margin-top: 30px;
            background: #1A3A5A;
        }
        footer {
            background: #051E30;
            padding: 30px 0;
            text-align: center;
            color: #8AA3B9;
        }
        @media (max-width: 992px) {
            .contacts-grid { grid-template-columns: 1fr; }
        }
        .logo img { height: 100px; }
        
        .service-badge {
            background: #0066B3;
            color: white;
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 20px;
            margin-left: 10px;
            vertical-align: middle;
        }
        .service-center-card {
            background: rgba(255,255,255,0.95);
            border-radius: 28px;
            padding: 25px;
            margin-top: 30px;
            border-left: 4px solid #FFD966;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }
        .service-center-card h4 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .service-center-card h4 i {
            color: #0066B3;
        }