 .auto-page {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
            color: #1e293b;
            line-height: 1.6;
            position: relative;
            overflow-x: hidden;
            min-height: 100vh;
        }

        .auto-bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.03;
            background-image: 
                radial-gradient(circle at 20% 30%, #01559B 1px, transparent 1px),
                radial-gradient(circle at 80% 70%, #ff6b00 1px, transparent 1px),
                radial-gradient(circle at 40% 80%, #0ea5e9 1px, transparent 1px);
            background-size: 60px 60px, 80px 80px, 40px 40px;
        }

        .auto-floating-elements {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .auto-floating-element {
            position: absolute;
            opacity: 0.05;
            animation: autoFloat 25s infinite linear;
        }

        .auto-floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            width: 100px;
            height: 100px;
            background: #01559B;
            border-radius: 50%;
            animation-delay: 0s;
        }

        .auto-floating-element:nth-child(2) {
            top: 70%;
            right: 15%;
            width: 120px;
            height: 120px;
            background: #ff6b00;
            border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
            animation-delay: -8s;
            animation-direction: reverse;
        }

        .auto-floating-element:nth-child(3) {
            top: 40%;
            left: 80%;
            width: 80px;
            height: 80px;
            background: #0ea5e9;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation-delay: -16s;
        }

        @keyframes autoFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(40px, 50px) rotate(120deg); }
            66% { transform: translate(-30px, 40px) rotate(240deg); }
        }

        .auto-hero {
            background: linear-gradient(rgba(1, 85, 155, 0.95), rgba(0, 51, 102, 0.9));
            color: white;
            padding: 100px 20px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 95%);
        }

        .auto-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
            opacity: 0.2;
        }

        .auto-hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            position: relative;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .auto-hero-subtitle {
            font-size: 1.8rem;
            font-weight: 600;
            max-width: 800px;
            margin: 0 auto 20px;
            opacity: 0.9;
            line-height: 1.4;
        }

        .auto-hero-logo {
            font-size: 1.3rem;
            background: rgba(255, 255, 255, 0.2);
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            margin-top: 20px;
        }

        .auto-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 80px;
        }

        .auto-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-top: 4px solid #01559B;
            animation: autoFadeInUp 0.6s ease forwards;
            position: relative;
            overflow: hidden;
        }

        .auto-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(1, 85, 155, 0.05), transparent);
            border-radius: 0 0 0 100px;
        }

        .auto-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #01559B;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            z-index: 1;
        }

        .auto-section-title i {
            color: #ff6b00;
        }

        .auto-content {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #475569;
            position: relative;
            z-index: 1;
        }

        .auto-content p {
            margin-bottom: 25px;
        }

        .auto-directions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .auto-direction-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 20px;
            padding: 35px;
            border: 2px solid #e2e8f0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: autoFadeInUp 0.6s ease forwards;
            position: relative;
            overflow: hidden;
        }

        .auto-direction-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(1, 85, 155, 0.2);
            border-color: #01559B;
            background: white;
        }

        .auto-direction-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #01559B, #0ea5e9);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .auto-direction-card:hover::before {
            transform: scaleX(1);
        }

        .auto-direction-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .auto-direction-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #01559B 0%, #0ea5e9 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(1, 85, 155, 0.2);
        }

        .auto-direction-title {
            font-size: 1.8rem;
            color: #01559B;
            font-weight: 700;
            line-height: 1.3;
        }

        .auto-programs-list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }

        .auto-program-item {
            margin-bottom: 15px;
            padding: 15px;
            background: white;
            border-radius: 12px;
            border-left: 4px solid #01559B;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .auto-program-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(1, 85, 155, 0.1);
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .auto-program-number {
            width: 40px;
            height: 40px;
            min-width: 40px;
            background: linear-gradient(135deg, #01559B 0%, #0ea5e9 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .auto-program-info {
            flex: 1;
        }

        .auto-program-name {
            font-size: 1.2rem;
            color: #01559B;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .auto-program-description {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .auto-program-category {
            display: inline-block;
            background: rgba(1, 85, 155, 0.1);
            color: #01559B;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 5px;
        }

        .auto-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .auto-feature-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            animation: autoFadeInUp 0.6s ease forwards;
        }

        .auto-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: #01559B;
        }

        .auto-feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #01559B 0%, #0ea5e9 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 24px;
        }

        .auto-feature-title {
            font-size: 1.3rem;
            color: #01559B;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .auto-feature-description {
            color: #64748b;
            line-height: 1.6;
        }

        .auto-contacts-section {
            background: linear-gradient(135deg, #01559B 0%, #003366 100%);
            border-radius: 25px;
            padding: 60px;
            margin-top: 80px;
            color: white;
            position: relative;
            overflow: hidden;
            animation: autoFadeInUp 0.6s ease forwards;
        }

        .auto-contacts-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .auto-contacts-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .auto-contacts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            margin-top: 50px;
            position: relative;
            z-index: 2;
        }

        .auto-contact-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 35px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.25);
        }

        .auto-contact-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .auto-contact-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 28px;
            transition: all 0.3s ease;
        }

        .auto-contact-card:hover .auto-contact-icon {
            background: white;
            color: #01559B;
            transform: rotate(15deg) scale(1.1);
        }

        .auto-contact-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .auto-contact-info {
            opacity: 0.9;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .auto-contact-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 28px;
            background: white;
            color: #01559B;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            transition: all 0.3s ease;
            border: 2px solid white;
            font-size: 1.1rem;
        }

        .auto-contact-link:hover {
            background: transparent;
            color: white;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }

        .auto-whatsapp-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #25D366;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            margin-top: 10px;
            font-weight: 600;
        }

        .auto-telegram-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #0088cc;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            margin-top: 10px;
            font-weight: 600;
        }

        @keyframes autoFadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .auto-direction-card:nth-child(1) { animation-delay: 0.2s; }
        .auto-direction-card:nth-child(2) { animation-delay: 0.3s; }
        .auto-program-item:nth-child(1) { animation-delay: 0.4s; }
        .auto-program-item:nth-child(2) { animation-delay: 0.5s; }
        .auto-program-item:nth-child(3) { animation-delay: 0.6s; }
        .auto-feature-card:nth-child(1) { animation-delay: 0.7s; }
        .auto-feature-card:nth-child(2) { animation-delay: 0.8s; }

        @media (max-width: 992px) {
            .auto-hero-title {
                font-size: 2.8rem;
            }
            
            .auto-hero-subtitle {
                font-size: 1.5rem;
            }
            
            .auto-section-title {
                font-size: 2rem;
            }
            
            .auto-hero {
                padding: 80px 20px 60px;
            }
            
            .auto-section,
            .auto-contacts-section {
                padding: 30px;
            }
            
            .auto-directions-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .auto-hero-title {
                font-size: 2.2rem;
            }
            
            .auto-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .auto-hero-logo {
                font-size: 1.1rem;
                padding: 8px 20px;
            }
            
            .auto-features-grid,
            .auto-contacts-grid {
                grid-template-columns: 1fr;
            }
            
            .auto-direction-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .auto-container {
                padding: 0 15px 40px;
            }
            
            .auto-section,
            .auto-contacts-section {
                padding: 20px;
            }
            
            .auto-section-title {
                font-size: 1.8rem;
            }
            
            .auto-contacts-section {
                padding: 30px 20px;
            }
            
            .auto-contact-card {
                padding: 25px;
            }
            
            .auto-program-item {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .auto-program-number {
                width: 35px;
                height: 35px;
                min-width: 35px;
                font-size: 1rem;
            }
        }

        .auto-footer {
            background: #001a33;
            color: white;
            padding: 50px 20px;
            text-align: center;
            margin-top: 100px;
        }

        .auto-footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .auto-footer p {
            opacity: 0.8;
            margin-top: 15px;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .auto-footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            display: inline-block;
            background: linear-gradient(135deg, #01559B, #0ea5e9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .auto-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .auto-stat-item {
            text-align: center;
        }

        .auto-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ff6b00;
            display: block;
            margin-bottom: 5px;
        }

        .auto-stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }