        /* ============================================
           БАЗОВЫЕ СТИЛИ И ПЕРЕМЕННЫЕ
           ============================================ */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 
                         'Helvetica Neue', Arial, sans-serif;
            background-color: #ffffff;
            color: #1a1a1a;
            line-height: 1.6;
        }

        /* ============================================
           HERO СЕКЦИЯ (БЛОК 1) - Темный фон с картинкой
           ============================================ */
        
        .hero-section {
            width: 100%;
            min-height: 40vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                        url('Behind-the-scenes8.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            text-align: center;
        }

        .hero-logo {
            width: 120px;
            height: 115px;
/*            background-color: #ffffff; */
            border-radius: 8px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #222;
        }

        .hero-title {
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: clamp(16px, 2.5vw, 22px);
            color: #e0e0e0;
            max-width: 800px;
            line-height: 1.6;
        }

        /* ============================================
           БЕЛЫЕ БЛОКИ С КОНТЕНТОМ (БЛОКИ 2, 4, 6)
           ============================================ */
        
        .white-section {
            width: 100%;
            background-color: #ffffff;
            padding: clamp(1.5rem, 5vw, 2.5rem) clamp(1rem, 5vw, 2rem);
        }

        .section-title {
            font-size: clamp(22px, 3.5vw, 32px);
            font-weight: 700;
            text-align: center;
            margin-bottom: 1.5rem;
            color: #4267ad;
        }

        .services-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .service-item {
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .service-title {
            font-weight: 600;
            color: #1a1a1a;
            font-size: clamp(16px, 2.5vw, 18px);
        }

        .service-description {
            color: #555555;
            margin-top: 0.1rem;
            font-size: clamp(15px, 2vw, 17px);
        }

        .advantages-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .advantage-item {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: clamp(15px, 2vw, 17px);
            color: #333333;
        }

        /* ============================================
           БЛОК С ПРИЗЫВОМ К ДЕЙСТВИЮ (БЛОК 3)
           ============================================ */
        
        .cta-section {
            width: 100%;
            background-color: #f0f0f0;
            padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 5vw, 2rem);
            text-align: center;
        }

        .cta-text {
            font-size: clamp(16px, 2.5vw, 20px);
            margin-bottom: 1.5rem;
            color: #1a1a1a;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background-color: #1e75d6;
            color: #ffffff;
            text-decoration: none;
            font-size: clamp(16px, 2.5vw, 20px);
            font-weight: 600;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .cta-button:hover {
            background-color: #1337a7;
        }

        /* ============================================
           ТЕМНО-СЕРЫЙ БЛОК (БЛОК 5)
           ============================================ */
        
        .dark-section {
            width: 100%;
            background-color: #18182f;
            padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 5vw, 2rem);
        }

        .dark-section .section-title {
            color: #ffffff;
        }

        .dark-section p {
            color: #e0e0e0;
            max-width: 900px;
            margin: 0 auto 1.2rem auto;
            line-height: 1.6;
            font-size: clamp(15px, 2vw, 17px);
        }

        /* ============================================
           БЛОК О ПРОДЮСЕРЕ (БЛОК 6)
           ============================================ */
        
        .producer-section {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .producer-photo {
            flex-shrink: 0;
            width: 250px;
            height: 250px;
            background-color: #e0e0e0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #666;
        }

        .producer-content {
            flex: 1;
        }

        .producer-name {
            font-size: clamp(22px, 3vw, 28px);
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
        }

        .producer-role {
            font-size: clamp(16px, 2vw, 18px);
            color: #666666;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .producer-bio {
            line-height: 1.8;
            color: #333333;
            font-size: clamp(15px, 2vw, 17px);
        }

        /* ============================================
           КОНТАКТНЫЙ БЛОК (БЛОК 7)
           ============================================ */
        
        .contact-section {
            width: 100%;
            background-color: #f5f5f5;
            padding: clamp(1rem, 5vw, 2rem) clamp(1rem, 5vw, 2rem);
            text-align: center;
        }

        .contact-title {
            font-size: clamp(18px, 2.5vw, 24px);
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        .contact-info {
            font-size: clamp(18px, 2.5vw, 24px);
            margin-bottom: 0.3rem;
        }

        .contact-phone {
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 600;
        }

        .contact-email {
            color: #1a1a1a;
            text-decoration: none;
        }

        .contact-email:hover,
        .contact-phone:hover {
            text-decoration: underline;
        }

        /* ============================================
           ФУТЕР (БЛОК 8)
           ============================================ */
        
        .footer-section {
            width: 100%;
            background-color: #18182f;
            padding: 1rem 2rem;
            text-align: center;
            color: #ffffff;
        }

        .footer-logo {
            width: 120px;
            height: 115px;
/*            background-color: #222222; */
            border-radius: 8px;
            margin: 0 auto 1.5rem auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #000;
            font-size: 12px;
        }

        .footer-copyright {
            margin-bottom: 1rem;
            font-size: clamp(12px, 2vw, 14px);
            color: #cccccc;
        }

        .footer-email {
            color: #ffffff;
            text-decoration: none;
            font-size: clamp(14px, 2vw, 16px);
        }

        .footer-email:hover {
            text-decoration: underline;
        }

        /* ============================================
           АДАПТИВНЫЕ МЕДИА-ЗАПРОСЫ
           ============================================ */
        
        @media (max-width: 767px) {
            .hero-logo {
                width: 60px;
                height: 60px;
                margin-bottom: 2rem;
            }

            .producer-section {
                flex-direction: column;
                text-align: center;
            }

            .producer-photo {
                width: 200px;
                height: 200px;
            }

            .service-item,
            .advantage-item {
                text-align: left;
            }
        }
