.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step-indicator .step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-indicator .step span {
    font-size: 1.7rem;
}

.step-indicator .step::before {
    content: attr(data-step);
    display: block;
    margin: 0 auto;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    color: #ccc;
}

.step-indicator .step::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    height: 2px;
    width: 100%;
    background: #ccc;
    z-index: -1;
}

.step-indicator .step:first-child::after {
    display: none;
}

.step-indicator .step.active::before {
    border-color: #0d6efd;
    color: #0d6efd;
}

.step-indicator .step.active+.step::after {
    background: #0d6efd;
}

.option img {
    max-width: 100%;
    max-height: 17rem;
    object-fit: contain;
    object-position: center;
    margin-bottom: 1rem;
}

.option.small img {
    max-height: 13rem;
    margin-bottom: 3rem;
}

.option button {
    width: 100%;
    max-width: none;
}

.option input[type=radio] ~ label {
    font-size: 1.6rem;
    color: #524F4F;
    top: 50%;
    transform: translateY(-50%);
}

.option input[type=radio] ~ label::before {
    background: #D9D9D9;
}

.option input[type=radio]:checked ~ label::before {
    background: #096278;
}

.option input[type=radio] ~ label::after {
    content: none;
}

.option {
    transition: transform 0.3s;
}

.option:hover {
    transform: scale(1.05);
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    padding: 3rem;
}

.btn-group button.active {
    background-color: #fff;
    color: #007bff;
    border-color: #007bff;
}

.slider {
    height: 4px;
    background-color: #007bff;
    width: 50%;
    margin: 1rem auto;
}

.icon {
    width: 64px;
    height: 64px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 32px;
    margin-right: 1rem;
}

.header {
    text-align: center;
    margin-bottom: 2rem;
}

.subtitle {
    color: #007bff;
    margin-bottom: 1rem;
}


.option {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}
.option:hover {
    transform: translateY(-5px);
}
.option img {
    width: 100%;
    height: auto;
}
.option p {
    margin-top: 10px;
    font-size: 14px;
    background: #3498db;
    padding: 10px;
    border-radius: 5px;
    color: white;
}

.color-selected {
    box-shadow: 0px 0px 20px #096d84;
}