        .services-hero {
            background: linear-gradient(135deg, rgba(17, 58, 112, 0.7), rgba(39, 85, 145, 0.7));
            color: white;
            /*padding: 2rem 1rem;*/
            text-align: center;
            /*margin-bottom: 1.5rem;*/
            margin: 1.15rem;
            box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            padding: 2.25rem;
        }
        
        .services-hero h1 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 1px;
        }
        
        .services-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .service-card {
            background: white;
            border-radius: 8px;
            padding: 1.25rem;
            /*box-shadow: var(--shadow-sm);*/
            box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }
        
        .service-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        
        .service-card h2 {
            color: var(--primary-color);
            margin-bottom: 0.75rem;
            font-size: 1.25rem;
        }
        
        .phone-link {
            display: block;
            margin-top: 0.5rem;
            color: var(--text-color);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            padding: 0.25rem 0;
        }
        
        .phone-link:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .faq-section {
            background: white;
            border-radius: 8px;
            padding: 1.25rem;
            /*box-shadow: var(--shadow-sm);*/
            box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.2);
            margin-bottom: 1.5rem;
        }
        
        .faq-section h2 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }
        
        .contacts-card {
            background: white;
            border-radius: 8px;
            padding: 1.25rem;
            /*box-shadow: var(--shadow-sm);*/
            box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.2);
        }
        
        .transport-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }
        
        .transport-badge {
            background: var(--light-gray);
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.8rem;
            white-space: nowrap;
        }
        
        /* Адаптация для мобильных */
        @media (max-width: 768px) {
            .services-hero {
                padding: 1.5rem 1rem;
            }
            
            .services-hero h1 {
                font-size: 1.75rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
            
            .service-card {
                padding: 1rem;
            }
        }