/* Основные стили для страницы видов страхования */
.btn-orange {
    background-color: #ff6b00;
    color: white;
    border: none;
}

.btn-outline-orange {
    color: #ff6b00;
    border-color: #ff6b00;
}

.btn-outline-orange:hover {
    background-color: #ff6b00;
    color: white;
}

.text-orange {
    color: #000000;
}

/* Стили для шагов оформления */
.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.steps::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step span:first-child {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    font-weight: bold;
}

.step span:last-child {
    font-size: 0.8rem;
    color: #6c757d;
}

.step.active span:first-child {
    background-color: #ff6b00;
    color: white;
}

/* Стили для номеров шагов */
.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff6b00;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto;
    font-size: 1.5rem;
}