/* Общие стили */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #fdf6e3; /* Кремовый фон нижней части */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Секция 1 */
.hero-section {
    background-color: #009688;
    color: white;
    padding-bottom: 60px;
}

.warning-bar {
    background-color: rgba(0,0,0,0.1);
    text-align: center;
    padding: 10px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.warning-bar strong {
    color: #ff5252;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 40px;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 500px;
}

.hero-text p {
    font-size: 18px;
    max-width: 450px;
}

/* Форма */
.form-container {
    width: 400px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 20px;
    border: 1px solid #ffffff;
    background: transparent;
    color: white;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    border-radius: 25px;
    border: none;
    background-color: #00796b;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

/* Секция 2 */
.features-section {
    padding: 60px 0;
}

.features-section h2 {
    color: #0C679E;
    font-size: 32px;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-item i {
    font-size: 40px;
    color: #0C679E;
}

.feature-item p {
    color: #0C679E;
    font-weight: bold;
    font-size: 16px;
}

/* Секция 3 */
.stats-section {
    background-color: #fdf6e3;
}

.stats-bar {
    background-color: #00695c;
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    margin-top: -30px;
}

.stat-box h3 { font-size: 48px; }

.quiz-content {
    display: flex;
    margin-top: 60px;
    gap: 40px;
}

.trust-reasons h2 {
    color: #0277bd;
    font-size: 24px;
    margin-bottom: 30px;
}

.reasons-list {
    list-style: none;
}

.reasons-list li {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #0277bd;
    font-weight: bold;
}

.reasons-list i { font-size: 24px; }

/* Квиз */
.quiz-container {
    background-color: #00695c;
    padding: 30px;
    border-radius: 40px;
    color: white;
    flex: 1;
}

.quiz-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    color: #333;
    margin-top: 20px;
}

.progress-container {
    background: #eee;
    height: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.progress-bar {
    background: #0277bd;
    height: 100%;
    border-radius: 5px;
    font-size: 10px;
    color: white;
    text-align: center;
}

.quiz-question {
    font-weight: bold;
    margin-bottom: 15px;
    color: #00695c;
}

.quiz-options label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.btn-next {
    width: 100%;
    padding: 12px;
    background: #0277bd;
    color: white;
    border: none;
    border-radius: 20px;
    margin-top: 15px;
}

.footer-links {
    text-align: center;
    padding: 20px;
}

.footer-links a {
    margin: 0 15px;
    color: #00796b;
    font-size: 12px;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .hero-content, .quiz-content {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text { text-align: center; }
    .hero-text h1 { font-size: 30px; }
    
    .form-container { width: 100%; margin-top: 30px; }
    
    .features-grid { grid-template-columns: 1fr; }
    
    .stats-bar {
        flex-direction: column;
        gap: 20px;
    }
}
.iti {
    position: relative;
    display: inline-block;
    width: 100%;
    color: #333;
}


.quiz-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
}
 
.form-group-quiz {
    margin-bottom: 15px;
    text-align: left;
}

.form-group-quiz label {
    display: block;
    color: #00695c;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: bold;
}

.form-group-quiz input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid #00695c;
    outline: none;
}

.quiz-options label {
    cursor: pointer;
    display: block;
    padding: 5px 0;
}

.btn-back, 
.btn-next, 
.btn-submit-quiz {
    flex: 1;            
    height: 45px;   
    background: #0277bd;
    color: white;
    border: none;
    border-radius: 25px; /* Закругление как на основном дизайне */
    padding: 0 20px;     /* Внутренние отступы */
    cursor: pointer;
    font-weight: bold; 
    display: flex;       /* Центрируем текст внутри */
    align-items: center;
    justify-content: center;
    opacity: 1;          /* Убираем прозрачность у кнопки Назад */
}

/* Добавляем эффект при нажатии, чтобы кнопки "ожили" */
.btn-back:active, 
.btn-next:active, 
.btn-submit-quiz:active {
    transform: scale(0.98);
    background: #01579b;
}