* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, html {
            font-family: Arial, sans-serif;
            width: 100%;
            height: 100%;
        }


header {
    background: #ffffff;
    padding: 27px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

        header img {
            max-height: 50px;
        }

       header .no-obligation {
    font-size: 0.8rem;
    color: #555;
    text-align: right;
    max-width: 134px;
}

        main {
            display: flex;
            justify-content: center;
            align-items: flex-start;
             box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

.clear{
            clear: both;
           
        }
		 .agreement{
    margin: 25px 25px 6px 0px;
}
        .form-container {
            background: #ffffff;
            width: 100%;
            max-width: 600px;
            padding: 30px;
            flex: 1 1 50%;
           
        }

        .form-container h2 {
            text-align: center;
            margin-bottom: 10px;
            font-size: 1.8rem;
            color: #333;
        }
.form-container h3{
             
				margin-top: 16px;
            }
        .form-container .slogan {
            text-align: center;
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 20px;
            font-style: italic;
        }

        .image-container {
            flex: 1 1 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
			    order: 1;
		
        }

        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            object-fit: cover;
        }

        .step-status {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .step-status .progress {
            flex-grow: 1;
            height: 8px;
            background: #f0f0f0;
            border-radius: 5px;
            margin-right: 10px;
            overflow: hidden;
        }

        .step-status .progress-bar {
            height: 100%;
            background: #007bff;
            width: 0%;
            transition: width 0.3s ease;
        }

        .step-status .step-title {
            font-size: 1rem;
            color: #333;
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #444;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group input.error {
            border-color: red;
            background: #ffe6e6;
        }

        .form-group .error-message {
            color: red;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }

        .options {
            margin-top: 20px;
            background: #f9f9f9;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .options .option {
    display: block;
	justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: #ffffff;
            transition: background 0.3s, transform 0.2s;
        }

        .options .option:hover {
            background: #f0f8ff;
            transform: translateY(-2px);
        }

        .options .option label {
            font-size: 1rem;
            font-weight: 500;
            color: #333;
            flex: 1;
        }

       .options .option input {
    flex: 0 0 auto;
    margin: 11px 0px 0px 0px;
    font-size: 1rem;
    width: 100%;
    height: 39px;
    text-align: left;
    padding: 5px;
}

        .total-price {
            margin-top: 20px;
            font-size: 1.5rem;
            color: green;
            text-align: center;
        }

        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        .form-navigation button {
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            background: #007bff;
            color: white;
			min-width: 180px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .form-navigation button:hover {
            background: #0056b3;
        }

        .form-navigation button[disabled] {
            background: #ddd;
            cursor: not-allowed;
        }

        footer {
            background: #ffffff;
            padding: 10px 20px;
            text-align: center;
           
            margin-top: 20px;
        }
		.submit-btn {
    display: block; /* Делает кнопку блочной */
    width: 100%; /* Занимает всю ширину родителя */
    background-color: orange; /* Основной цвет кнопки */
    color: white; /* Цвет текста */
    padding: 15px; /* Внутренние отступы */
    font-size: 18px; /* Увеличенный размер текста */
    font-weight: bold; /* Жирный шрифт для акцента */
    border: none; /* Убирает стандартные границы */
    border-radius: 8px; /* Округлые углы для красоты */
    cursor: pointer; /* Указывает, что это кликабельный элемент */
    margin-top: 20px; /* Отступ сверху */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Добавляет тень для объёмного эффекта */
    transition: all 0.3s ease; /* Анимация при наведении */
}

.submit-btn:hover {
    background-color: darkorange; /* Цвет при наведении */
    transform: translateY(-2px); /* Лёгкий подъём вверх при наведении */
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3); /* Усиленная тень при наведении */
}

.submit-btn:active {
    transform: translateY(2px); /* Нажатие кнопки */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Уменьшение тени при нажатии */
}
.info-box {
    display: flex
;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    margin: 20px 0px 20px 0px;
}

  .info-box .icon {
    margin-right: 10px; /* Отступ между иконкой и текстом */
    font-size: 18px; /* Размер иконки */
    color: #007bff; /* Синий цвет для иконки */
  }

  .info-box a {
    color: #007bff; /* Цвет ссылки */
    text-decoration: none; /* Убрать подчеркивание */
    font-weight: bold; /* Сделать ссылку жирной */
  }

  .info-box a:hover {
    text-decoration: underline; /* Подчеркивание при наведении */
  }
/* Радиокнопки рядом с отступом */
input[type="radio"] {
    display: none; /* Скрыть стандартные радиокнопки */
}

input[type="radio"] + label {
    /* display: inline-block; */
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, transform 0.2s;
    margin-right: 10px;
    text-align: center;
    min-width: 135px;
    float: left;
    margin: 9px 9px 9px 0px;
}

input[type="radio"]:checked + label {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

input[type="radio"] + label:hover {
    border-color: #007bff;
    transform: translateY(-2px);
}
/* Стиль для выпадающего списка */
select {
    width: 100%;
    padding: 12px 10px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    appearance: none; /* Убирает стандартный стиль браузера */
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23999' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

select:hover {
    border-color: #007bff;
}

/* Контейнер для красивой тени */
select-container {
    position: relative;
}

@media (max-width: 768px) {
    select {
        font-size: 14px;
        padding: 10px;
    }
}

/* Поля ввода */
#flexible-date-fields, #specific-date-field {
    margin-top: 15px;
    display: flex
;
    gap: 20px;
    border: dotted 1px #c55e2f26;
    padding: 12px;
    background: #c55e2f08;
}

#flexible-date-fields label, #specific-date-field label {
    font-size: 14px;
    color: #555;
    display: block;
    margin-bottom: 5px;
}

#flexible-date-fields input[type="date"],
#specific-date-field input[type="date"],
input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

#flexible-date-fields input[type="date"]:focus,
#specific-date-field input[type="date"]:focus,
input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
}

/* Контейнер радиокнопок */
.form-group > div {
    display: flex;
    flex-wrap: wrap; /* Перенос на новую строку при недостатке места */
    gap: 10px; /* Отступ между кнопками */
}

/* Адаптивность для небольших экранов */
@media (max-width: 768px) {
    input[type="radio"] + label {
        font-size: 14px;
        padding: 8px 12px;
    }

    #flexible-date-fields input[type="date"],
    #specific-date-field input[type="date"],
    input[type="text"] {
        font-size: 14px;
        padding: 8px;
    }

    #flexible-date-fields, #specific-date-field {
        flex-direction: column; /* Поля одно под другим */
        gap: 10px; /* Уменьшение отступа между полями */
    }
}

        @media (max-width: 768px) {
          main {
        flex-direction: column;
        margin: 6px;
		padding: 8px;
        
    }

            .form-container {
                order: 1;
				padding: 8px;
            }

            .im.form-container {
                order: 1;
				padding: 8px;
            }age-container {
                order: 2;
                padding: 10px;
            }

            .form-container h2 {
                font-size: 1.6rem;
            }

            .form-container .slogan {
                font-size: 1rem;
            }
			.options .option input {
    flex: 0 0 auto;
    margin: 11px 0px 0px 0px;
    font-size: 1rem;
    width: 100%;
}
        }

        @media (min-width: 1200px) {
            .form-container {
                padding: 40px;
            }

            .form-container h2 {
                font-size: 2rem;
            }
        }