/* =========================================
   СТИЛИ ДЛЯ СТРАНИЦЫ "УСЛУГИ"
   ========================================= */

.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: #1e293b;
}

.services-hero {
    background: linear-gradient(135deg, #1a3a4a 0%, #2c5a6a 100%);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 40px;
    color: white;
    text-align: center;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.section-title {
    font-size: 1.8rem;
    color: #1a3a4a;
    margin-bottom: 24px;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}

.service-category {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.service-category h3 {
    font-size: 1.4rem;
    color: #1a3a4a;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e67e22;
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.service-category li::before {
    content: "✅";
    position: absolute;
    left: 0;
    color: #e67e22;
}

.price-note {
    background: #f0f4f8;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    margin: 40px 0;
}

.price-note p {
    margin: 8px 0;
}

.btn-call {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn-call:hover {
    transform: translateY(-2px);
}

/* Адаптив для страницы услуг */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.6rem;
    }
    
    .services-hero p {
        font-size: 1rem;
    }
    
    .service-category {
        min-width: 100%;
    }
}</style>
