        /* Общие стили */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            /* Предотвращаем горизонтальный скролл на всей странице */
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            width: 100%;
            /* Гарантируем, что контейнер не будет шире экрана */
            overflow-x: hidden;
            /* Предотвращаем горизонтальный скролл в контейнере */
        }
        /* Кнопка возврата на главную */
        
        .home-button-container {
            text-align: center;
            margin: 20px 0;
        }
        
        .home-button {
            display: inline-block;
            padding: 12px 24px;
            font-size: 1rem;
            font-weight: 500;
            color: #fff;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }
        
        .home-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        }
        
        .home-button:active {
            transform: translateY(-1px);
        }
        /* Заголовок */
        
        .header {
            text-align: center;
            margin-bottom: 50px;
            color: white;
        }
        
        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .logo i {
            font-size: 2.5rem;
            color: #ffeb3b;
        }
        
        .header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 300;
        }
        /* Блоки выбора категории */
        
        .category-selection {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            /* Гарантируем, что блок не будет шире экрана */
        }
        
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 20px;
            width: 100%;
            max-width: 1400px;
        }
        
        .category-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .category-card:hover::before {
            transform: scaleX(1);
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .category-card.featured {
            border: 2px solid #ffeb3b;
            box-shadow: 0 15px 35px rgba(255, 235, 59, 0.2);
        }
        
        .featured-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .category-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }
        
        .category-card.featured .category-icon {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }
        
        .category-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }
        
        .category-card p {
            color: #666;
            margin-bottom: 25px;
            font-size: 1rem;
        }
        
        .category-benefits {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 30px;
        }
        
        .category-benefits span {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #555;
        }
        
        .category-benefits i {
            color: #4caf50;
            font-size: 0.8rem;
        }
        
        .select-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        
        .select-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .select-btn:hover::before {
            left: 100%;
        }
        
        .select-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }
        
        .category-card.featured .select-btn {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
        }
        
        .category-card.featured .select-btn:hover {
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }
        /* Контейнер формы */
        
        .form-container {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 20px;
            animation: slideIn 0.5s ease;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .form-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .back-btn {
            background: #f5f5f5;
            border: none;
            padding: 12px 20px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            color: #666;
        }
        
        .back-btn:hover {
            background: #e0e0e0;
            transform: translateX(-5px);
        }
        
        .form-header h2 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #333;
        }
        /* Секции формы */
        
        .form-section {
            margin-bottom: 40px;
            padding: 30px;
            background: rgba(248, 249, 250, 0.5);
            border-radius: 15px;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .form-section h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding-bottom: 10px;
            border-bottom: 2px solid #667eea;
        }
        
        .form-section h3 i {
            color: #667eea;
            font-size: 1.2rem;
        }
        /* Форма */
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .form-group label {
            font-weight: 500;
            color: #555;
            font-size: 0.95rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
            font-family: 'Roboto', sans-serif;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        .form-group input:invalid {
            border-color: #ff5252;
        }
        
        .form-group input:valid {
            border-color: #4caf50;
        }
        /* Чекбоксы */
        
        .checkbox-group {
            grid-column: 1 / -1;
            margin-top: 10px;
        }
        
        .checkbox-group-multiple {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 8px;
        }
        
        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            cursor: pointer;
            position: relative;
            padding-left: 35px;
            user-select: none;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .checkbox-text {
            display: inline-block;
            padding-top: 2px;
        }
        
        .checkbox-label input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }
        
        .checkmark {
            position: absolute;
            left: 0;
            top: 2px;
            height: 20px;
            width: 20px;
            background-color: #fff;
            border: 2px solid #e0e0e0;
            border-radius: 4px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .checkbox-label:hover input~.checkmark {
            border-color: #667eea;
        }
        
        .checkbox-label input:checked~.checkmark {
            background-color: #667eea;
            border-color: #667eea;
        }
        
        .checkmark::after {
            content: "";
            position: absolute;
            display: none;
            left: 6px;
            top: 2px;
            width: 6px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
        
        .checkbox-label input:checked~.checkmark::after {
            display: block;
        }
        
        .checkbox-label a {
            color: #667eea;
            text-decoration: underline;
            transition: all 0.2s ease;
        }
        
        .checkbox-label a:hover {
            color: #764ba2;
        }
        /* Кнопка отправки */
        
        .submit-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 18px 50px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 30px auto 0;
            min-width: 250px;
            position: relative;
            overflow: hidden;
        }
        
        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .submit-btn:hover::before {
            left: 100%;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }
        
        .submit-btn:active {
            transform: translateY(-1px);
        }
        /* Сообщение об успехе */
        
        .success-message {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 20px;
            animation: slideIn 0.5s ease;
        }
        
        .success-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, #4caf50, #45a049);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            box-shadow: 0 15px 35px rgba(76, 175, 80, 0.3);
            animation: bounce 1s ease;
        }
        
        @keyframes bounce {
            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-20px);
            }
            60% {
                transform: translateY(-10px);
            }
        }
        
        .success-message h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }
        
        .success-message p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .contact-info {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
        }
        
        .contact-info h3 {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 20px;
        }
        
        .phone-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            text-decoration: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .phone-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }
        
        .next-steps {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            text-align: left;
        }
        
        .next-steps h3 {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .next-steps ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .next-steps li {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1rem;
            color: #555;
        }
        
        .next-steps i {
            color: #4caf50;
            font-size: 1rem;
            width: 20px;
        }
        
        .new-application-btn {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 30px;
        }
        
        .new-application-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }
        /* Условные поля */
        
        .driver-field,
        .courier-field,
        .cargo-field,
        .car-details,
        .courier-auto-field {
            transition: all 0.3s ease;
        }
        
        .driver-field.hidden,
        .courier-field.hidden,
        .cargo-field.hidden,
        .car-details.hidden,
        .courier-auto-field.hidden {
            display: none;
        }
        /* Футер */
        
        .footer {
            text-align: center;
            padding: 30px 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin-top: auto;
        }
        /* Анимации для полей */
        
        .form-group {
            animation: fadeInUp 0.5s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Адаптивность */
        
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            .header h1 {
                font-size: 2.2rem;
            }
            .category-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .category-card {
                padding: 30px 25px;
            }
            .form-container {
                padding: 30px 20px;
            }
            .form-section {
                padding: 20px;
                margin-bottom: 25px;
            }
            .form-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .success-message {
                padding: 40px 20px;
            }
            .next-steps {
                text-align: center;
            }
            .next-steps ul {
                text-align: left;
            }
            .checkbox-group-multiple {
                gap: 8px;
            }
            .checkbox-label {
                font-size: 0.9rem;
                padding-left: 30px;
            }
            .home-button {
                padding: 10px 20px;
                font-size: 0.95rem;
            }
        }
        
        @media (max-width: 480px) {
            .header h1 {
                font-size: 1.8rem;
            }
            .subtitle {
                font-size: 1rem;
            }
            .category-card {
                padding: 25px 20px;
            }
            .category-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            .form-container {
                padding: 25px 15px;
            }
            .form-section {
                padding: 15px;
            }
            .form-section h3 {
                font-size: 1.2rem;
            }
            .success-message {
                padding: 30px 15px;
            }
            .success-icon {
                width: 80px;
                height: 80px;
                font-size: 2.5rem;
            }
            .checkbox-label {
                font-size: 0.8rem;
                padding-left: 25px;
            }
            .checkmark {
                height: 18px;
                width: 18px;
                top: 1px;
            }
            .checkmark::after {
                left: 5px;
                top: 1px;
                width: 5px;
                height: 9px;
            }
            .home-button {
                padding: 10px 18px;
                font-size: 0.9rem;
                width: 90%;
                max-width: 300px;
            }
            /* Улучшение отображения ссылок в чекбоксах */
            .checkbox-label a {
                color: #667eea;
                text-decoration: underline;
                word-break: break-word;
                font-weight: 500;
            }
            /* Улучшение отображения блока с условиями */
            .terms-checkbox {
                margin-bottom: 5px;
            }
            .terms-text {
                display: flex;
                flex-wrap: wrap;
                gap: 3px;
                line-height: 1.4;
            }
            .terms-text a {
                display: inline-block;
                margin-right: 3px;
            }
            #agreeTerms+.checkmark+.checkbox-text {
                display: flex;
                flex-wrap: wrap;
                gap: 3px;
            }
        }
        /* Специальная адаптация для очень узких экранов */
        
        @media (max-width: 360px) {
            .terms-text {
                font-size: 0.7rem;
            }
            .checkbox-label {
                font-size: 0.75rem;
                padding-left: 22px;
            }
            .checkmark {
                height: 16px;
                width: 16px;
            }
            .checkmark::after {
                left: 4px;
                top: 1px;
                width: 4px;
                height: 8px;
            }
        }
        /* Специальная адаптация для узких экранов */
        
        @media (min-width: 340px) and (max-width: 460px) {
            .container {
                padding: 10px;
                overflow-x: hidden;
            }
            .header {
                margin-bottom: 30px;
            }
            .header h1 {
                font-size: 1.6rem;
            }
            .subtitle {
                font-size: 0.9rem;
            }
            .logo {
                font-size: 1.7rem;
                margin-bottom: 15px;
            }
            .logo i {
                font-size: 2rem;
            }
            .category-card {
                padding: 20px 15px;
                width: 100%;
                /* Гарантируем, что карточка не будет шире родительского контейнера */
                max-width: 100%;
                /* Максимальная ширина равна ширине родителя */
                box-sizing: border-box;
                /* Учитываем padding в общей ширине */
            }
            .category-grid {
                grid-template-columns: 1fr;
                /* На узких экранах только одна колонка */
                width: 100%;
                padding: 0 5px;
                /* Уменьшаем боковые отступы */
            }
            .category-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
                margin-bottom: 15px;
            }
            .category-card h3 {
                font-size: 1.3rem;
                margin-bottom: 10px;
            }
            .category-card p {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }
            .category-benefits {
                margin-bottom: 20px;
            }
            .category-benefits span {
                font-size: 0.8rem;
                text-align: center;
                /* Центрируем текст для лучшего отображения */
                word-break: break-word;
                /* Разрешаем перенос слов */
            }
            .select-btn {
                padding: 12px 20px;
                /* Уменьшаем отступы кнопки */
                font-size: 0.9rem;
                width: 100%;
                /* Кнопка на всю ширину карточки */
                max-width: 200px;
                /* Но не слишком широкая */
            }
            .form-group label {
                font-size: 0.85rem;
            }
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 12px;
                font-size: 0.9rem;
                width: 100%;
                /* Поля формы на всю ширину */
            }
            .submit-btn {
                padding: 15px 30px;
                /* Уменьшаем отступы */
                font-size: 1rem;
                min-width: 180px;
                /* Уменьшаем минимальную ширину */
                max-width: 100%;
                /* Но не шире родителя */
            }
            .home-button {
                padding: 10px 15px;
                font-size: 0.85rem;
                width: 100%;
                max-width: 250px;
                /* Ограничиваем максимальную ширину */
            }
            .home-button-container {
                margin: 15px 0;
                width: 100%;
                /* На всю ширину */
            }
            .success-message h2 {
                font-size: 1.1rem;
            }
            .success-message p {
                font-size: 0.9rem;
            }
            .contact-info,
            .next-steps {
                padding: 20px 15px;
                width: 100%;
                /* На всю ширину */
            }
            .phone-link {
                padding: 12px 25px;
                font-size: 0.9rem;
                display: inline-flex;
                max-width: 100%;
                /* Не шире родителя */
                justify-content: center;
                /* Центрируем содержимое */
            }
            .new-application-btn {
                padding: 12px 20px;
                font-size: 0.9rem;
                max-width: 100%;
                /* Не шире родителя */
            }
            /* Исправление для featured-badge, чтобы не выходил за пределы карточки */
            .featured-badge {
                font-size: 0.7rem;
                padding: 3px 10px;
                right: 10px;
                top: 10px;
            }
            /* Исправление для формы */
            .form-container {
                padding: 20px 15px;
                width: 100%;
                max-width: 100%;
            }
            .form-section {
                padding: 15px 10px;
            }
            /* Исправление для checkbox-label */
            .checkbox-label {
                padding-left: 25px;
                font-size: 0.75rem;
                line-height: 1.3;
                display: flex;
                align-items: flex-start;
                text-align: left;
            }
            .checkbox-text {
                display: inline-block;
                padding-top: 1px;
                flex: 1;
            }
            /* Улучшение адаптации ссылок в чекбоксах */
            .checkbox-label a {
                display: inline;
                word-break: break-word;
                color: #667eea;
                text-decoration: underline;
            }
            /* Исправление для блока согласия */
            .form-group.checkbox-group {
                margin-bottom: 15px;
            }
            /* Специальное форматирование для блока с условиями и политикой */
            .checkbox-label .checkbox-text {
                display: inline;
                flex-wrap: wrap;
                gap: 3px;
            }
            /* Специальный класс для чекбокса с условиями */
            .terms-checkbox {
                margin-bottom: 5px;
            }
            .terms-text {
                display: flex;
                flex-wrap: wrap;
                gap: 3px;
            }
            .terms-text a {
                display: inline-block;
                margin-right: 3px;
            }
            #agreeTerms+.checkmark+.checkbox-text {
                display: flex;
                flex-wrap: wrap;
                gap: 3px;
            }
        }