
    /* Кастомные стили для улучшения дизайна */
    header {
        min-height: 60vh;
    }
    .hero-text h1 {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    .service-card img {
        transition: transform 0.3s ease;
    }
    .service-card:hover img {
        transform: scale(1.1);
    }
    .pricing-card {
        transition: all 0.3s ease;
    }
    .pricing-card:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    @media (max-width: 640px) {
        h1 { font-size: 1.5rem !important; }
        h2 { font-size: 1.25rem !important; }
        .container { padding: 0 1rem; }
    }
    @media (min-width: 1024px) {
        .container { max-width: 1200px; }
        h1 { font-size: 3.5rem !important; }
    }
