#carewel-calculator {
    color: black;
    padding: 30px;
    max-width: 400px;
    margin: auto;
    font-family: sans-serif;
    border-radius: 10px;
}
.step { display: none !important;
line-height: 40px; }
.step.active { display: block !important;
line-height: 40px; }
input, select {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border-radius: 5px;
    border: none;
    border: 1px solid black;
}
button {
    background: #DA1E32;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
}

.radio-labels {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    gap: 6px;
    white-space: nowrap;
}

label {
    display: block;
}

#result > a {
    color: black;
}

.step-header {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    gap: 10px;
}

.step-circle {
    font-size: 20px;
    color: #ccc;
    background: #eee;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
}

.step-circle.active {
    background: #e91e1e;
    color: white;
}

.quote-box {
    padding: 20px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    margin-top: 20px;
    text-align: center;
}

.quote-box h3 {
    margin-bottom: 10px;
}

.quote-box p {
    margin: 5px 0;
}

.quote-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
