    /* Основные стили страницы услуг */
    .services-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                    url('/static/images/service-bg.jpg') center/cover;
        padding: 120px 0 80px;
        color: white;
        text-align: center;
        margin-top: -140px;
        padding-top: 200px;
    }
    
    .services-hero h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        font-family: var(--font-rajdhani);
        text-transform: uppercase;
    }
    
    .services-hero p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 30px;
    }
    
    .service-intro {
        background-color: #f8f9fa;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin: -80px auto 50px;
        max-width: 1000px;
        position: relative;
        z-index: 10;
    }
    
    .service-intro h2 {
        color: var(--primary-color);
        margin-bottom: 20px;
        text-align: center;
    }
    
    .service-intro p.lead {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .brands-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin: 20px 0;
    }
    
    .brand-badge {
        background-color: var(--light-color);
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 600;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .brand-badge img {
        height: 24px;
    }
    
    .service-category {
        margin-bottom: 60px;
        padding: 30px 0;
        border-bottom: 1px solid #eee;
    }
    
    .service-category h2 {
        color: var(--primary-color);
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--secondary-color);
        font-family: var(--font-rajdhani);
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .service-card {
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
        border: 1px solid #eee;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .service-header {
        background-color: var(--primary-color);
        color: white;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .service-icon {
        font-size: 2rem;
        color: var(--secondary-color);
    }
    
    .service-title {
        font-size: 1.3rem;
        margin: 0;
    }
    
    .service-body {
        padding: 20px;
    }
    
    .service-features {
        list-style-type: none;
        padding: 0;
        margin: 0 0 20px 0;
    }
    
    .service-features li {
        padding: 8px 0;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }
    
    .service-features li:before {
        content: "•";
        color: var(--accent-color);
        font-size: 1.2rem;
    }
    
    .btn-service {
        background-color: var(--accent-color);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }
    
    .btn-service:hover {
        background-color: #a00e19;
        color: white;
        transform: translateY(-3px);
    }
    
    .booking-form {
        background-color: var(--light-color);
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .booking-form h3 {
        color: var(--primary-color);
        margin-bottom: 20px;
        font-family: var(--font-rajdhani);
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        height: 50px;
        border-radius: 4px;
        border: 1px solid #ddd;
        padding: 0 15px;
        width: 100%;
    }
    
    textarea.form-control {
        height: 120px;
        padding: 15px;
    }
    
    .btn-submit {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 600;
        text-transform: uppercase;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .btn-submit:hover {
        background-color: #004495;
    }
    
    /* Адаптивность */
    @media (max-width: 768px) {
        .services-hero {
            padding: 150px 0 60px;
        }
        
        .service-intro {
            padding: 20px;
            margin: -60px 15px 40px;
        }
        
        .brands-row {
            gap: 10px;
        }
        
        .brand-badge {
            padding: 8px 15px;
            font-size: 0.9rem;
        }
    }
    
    @media (max-width: 576px) {
        .services-hero h1 {
            font-size: 2.2rem;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .booking-form {
            padding: 20px;
        }
    }
