        @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: #1a1a1a;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #00416a 100%);
            background-attachment: fixed;
            min-height: 100vh;
            font-size: 16px;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 25% 25%, rgba(255, 140, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(0, 191, 255, 0.15) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 140, 0, 0.2);
            color: #1a1a1a;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 2.3em; /* высота Advertorial bar */
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo {
            min-width: 200px;
            height: 70px;
  
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            text-align: center;
            font-weight: 600;
            position: relative;
            overflow: hidden;
         
        }

        .logo img {
            width: 140px;
            height: auto;
            max-height: 90%;
            display: block;
        }

        nav {
            display: flex;
            align-items: center;
            height: 100%;
            margin: 0;
            padding: 0;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
            margin-top: 25px;
            align-items: center;
            margin-top: 25px;
        }

        nav a {
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        nav a:hover, nav a.active {
            color: white;
            background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
        }

        nav a i {
            font-size: 1.1rem;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #1a1a1a;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Main Content */
        main {
            margin-top: 110px;
            min-height: calc(100vh - 180px);
        }


        /* Typography */
        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        h2 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        h3 {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 1rem;
        }

        p, li {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            line-height: 1.7;
            margin-bottom: 1.2rem;
            color: #2c2c2c;
        }

        /* Hero Section */
        .hero {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            color: #1a1a1a;
            padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem);
            text-align: center;
            border-radius: 20px;
            margin-bottom: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 140, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .hero-icon {
            width: clamp(80px, 15vw, 120px);
            height: clamp(80px, 15vw, 120px);
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(2rem, 6vw, 4rem);
            color: white;
            animation: pulse 2s infinite;
            box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
        }

        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 8px 35px rgba(255, 140, 0, 0.6); }
            100% { transform: scale(1); box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4); }
        }

        .hero h1 {
            background: linear-gradient(135deg, #1e3c72 0%, #ff8c00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: clamp(1.1rem, 3vw, 1.4rem);
            margin-bottom: 2.5rem;
            color: #2c2c2c;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
            color: white;
            padding: clamp(1rem, 3vw, 1.5rem) clamp(2rem, 5vw, 3rem);
            border: none;
            border-radius: 50px;
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 140, 0, 0.5);
        }

        .cta-button i {
            font-size: 1.2rem;
        }

        /* Content Sections */
        .content-section {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: clamp(2rem, 5vw, 4rem);
            border-radius: 20px;
            margin-bottom: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 140, 0, 0.1);
            position: relative;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .content-section h2 {
            color: #1e3c72;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .content-section h2::before {
            content: '\f132';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: clamp(1.2rem, 3vw, 2rem);
        }

        .content-section h3 {
            color: #ff8c00;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .content-section h3::before {
            content: '\f0da';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #00bfff;
            font-size: 1.2rem;
        }

        /* Images */
        .hero-image,
        .image-placeholder {
            width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-image::after,
        .image-placeholder::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

        }

        .full-width-image {
            width: 90%;
            max-width: 900px;
            height: auto;
            object-fit: contain;
            border-radius: 15px;
            display: block;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 4px 20px rgba(30, 60, 114, 0.10);
            transition: transform 0.3s ease;
        }
        .full-width-image:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 30px rgba(255, 140, 0, 0.18);
        }

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: clamp(1.5rem, 4vw, 3rem);
            margin: 3rem 0;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: clamp(1.5rem, 4vw, 2.5rem);
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 140, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .feature-icon {
            width: clamp(60px, 12vw, 90px);
            height: clamp(60px, 12vw, 90px);
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            color: white;
            box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
        }

        .feature-card img {
            width: 100%;
            height: clamp(150px, 30vw, 200px);
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .feature-card:hover img {
            transform: scale(1.05);
        }

        .feature-card h3 {
            color: #1e3c72;
            margin-bottom: 1rem;
            text-align: center;
            display: block;
            align-items: unset;
            gap: unset;
            margin-top: unset;
            flex-wrap: unset;
        }

        .feature-card h3::before {
            display: none;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: clamp(1rem, 3vw, 2rem);
            margin: 3rem 0;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: clamp(1.5rem, 4vw, 2.5rem);
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 140, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            background: linear-gradient(135deg, #ff8c00 0%, #1e3c72 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #2c2c2c;
            font-weight: 600;
            font-size: clamp(0.9rem, 2vw, 1.1rem);
        }

        /* Lists */
        ul, ol {
            padding-left: 0;
        }

        ul li, ol li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
            padding-left: 0;
        }



        ol {
            counter-reset: step-counter;
        }

        ol li {
            counter-increment: step-counter;
        }

        ol li::before {
            content: counter(step-counter);
            background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
            color: white;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

        /* Contact Form */
        .contact-form {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: clamp(2rem, 5vw, 4rem);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 140, 0, 0.1);
            position: relative;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #ff8c00, #ff6b35, #00bfff, #1e3c72);
            background-size: 400% 400%;
            animation: gradientShift 4s ease infinite;
            border-radius: 20px 20px 0 0;
        }

        .contact-form h2 {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .contact-form h2::before {
            content: '\f0e0';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: clamp(1.2rem, 3vw, 2rem);
        }

        .form-group {
            margin-bottom: 2rem;
            position: relative;
        }

        .form-group label {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1rem;
            color: #1e3c72;
            font-weight: 600;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
        }

        .form-group label i {
            color: #ff8c00;
            font-size: 1.2rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: clamp(1rem, 3vw, 1.5rem);
            border: 2px solid #e9ecef;
            border-radius: 15px;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
            font-family: 'Inter', sans-serif;
            outline: 2px solid #ff8c00; /* Добавлено: постоянная оранжевая обводка */
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: 3px solid #ff6b35; /* Яркая обводка при фокусе */
            border-color: #ff8c00;
            box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
            transform: translateY(-2px);
        }

        .form-group textarea {
            height: clamp(100px, 20vw, 150px);
            resize: vertical;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            color: #2c2c2c;
            padding: clamp(2rem, 5vw, 4rem);
            border-radius: 20px;
            margin-bottom: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 140, 0, 0.1);
            position: relative;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #ff8c00, #ff6b35, #00bfff, #1e3c72);
            background-size: 400% 400%;
            animation: gradientShift 4s ease infinite;
            border-radius: 20px 20px 0 0;
        }

        .contact-info h3 {
            margin-bottom: 2rem;
            color: #1e3c72;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .contact-info h3::before {
            content: '\f095';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: clamp(1.2rem, 3vw, 2rem);
        }

        .contact-info p {
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            flex-wrap: wrap;
        }

        .contact-info p::before {
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #ff8c00;
            width: 20px;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .contact-info p:nth-of-type(1)::before { content: '\f1ad'; }
        .contact-info p:nth-of-type(2)::before { content: '\f015'; }
        .contact-info p:nth-of-type(3)::before { content: '\f041'; }
        .contact-info p:nth-of-type(4)::before { content: '\f041'; }
        .contact-info p:nth-of-type(5)::before { content: '\f0e0'; }
        .contact-info p:nth-of-type(6)::before { content: '\f095'; }

        .contact-info a {
            color: #1e3c72;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #ff8c00;
        }

        /* Footer */
        footer {
            background: rgba(26, 26, 26, 0.98);
            backdrop-filter: blur(20px);
            color: white;
            text-align: center;
            padding: clamp(2rem, 5vw, 4rem) 0;
            margin-top: 3rem;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #ff8c00, #ff6b35, #00bfff, #1e3c72);
            background-size: 400% 400%;
            animation: gradientShift 4s ease infinite;
        }

        footer p {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            flex-wrap: wrap;
            color: #fff;
        }

        footer p::before {
            content: '\f1f9';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #ff8c00;
            font-size: 1.2rem;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .header-content {
                justify-content: space-between;
            }

            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                padding: 1.5rem;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
                border-radius: 0 0 20px 20px;
                gap: 0.5rem;
                
            }

            nav ul.active {
                display: flex;
            }

            nav a {
                justify-content: center;
                padding: 1rem;
                border-radius: 15px;
            }

            .mobile-menu {
                display: flex;
            }

            .feature-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            main {
                margin-top: 120px;
            }

            .hero {
                margin-bottom: 2rem;
            }

            .content-section {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 600px) {
            .container {
                padding: 0 15px;
            }

            .hero {
                padding: 2rem 1.5rem;
            }

            .content-section {
                padding: 1.5rem;
            }

            .contact-form,
            .contact-info {
                padding: 1.5rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .feature-grid {
                gap: 1.5rem;
            }

            nav ul {
                padding: 1rem;
            }

            .logo {
                min-width: 150px;
                height: 60px;
                font-size: 0.9rem;
            }

            .logo::before {
                font-size: 2rem;
                top: 10px;
                left: 10px;
            }
            header {
                top: 2.7em; /* чуть больше для мобильных */
            }
        }

        @media (max-width: 400px) {
            .container {
                padding: 0 10px;
            }

            .header-content {
                gap: 0.5rem;
            }

            .feature-card,
            .stat-card {
                padding: 1rem;
            }

            nav ul {
                padding: 0.5rem;
            }
        }