.forms-wrapper .form-container h3 {
    color: var(--neutral-900);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.lfb-container {
    overflow: hidden;
    position: relative;
}

.lfb_progress {
    margin-bottom: 2rem;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
}

.lfb_progress li {
    list-style-type: none;
    flex-basis: 20%;
    font-size: 12px;
    position: relative;
    text-align: center;
    color: #BDBDBD;
    z-index: 1;
}

.lfb_progress li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    font-size: 14px;
    color: #333;
    background: white;
    border-radius: 50%;
    margin: 0 auto 5px auto;
    border: 1px solid #DDD;
    transition: all 0.3s ease;
}

.lfb_progress li:after {
    content: '';
    width: 100%;
    height: 0px;
    background: white;
    position: absolute;
    left: -50%;
    top: 15px;
    z-index: -1;
    transition: all 0.3s ease;
}

.lfb_progress li:first-child:after {
    content: none;
}

.lfb_progress li.active {
    color: var(--primary-green);
}

.lfb_progress li.active:before {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.lfb_progress li.active + li:after {
    background: var(--primary-green);
}

.lfb_genSlide {
    display: none;
    animation: slide-in 0.5s ease-out forwards;
}

.lfb_genSlide.active {
    display: block;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lfb_stepTitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 2rem;
    text-align: left;
}

#wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

#wizard-buttons .lfb-prev,
#wizard-buttons .lfb-next,
#wizard-buttons .lfb-submit {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto !important;
    flex-grow: 0 !important;
}

.lfb-prev {
    background-color: #f0f0f0;
    color: #333;
}

.lfb-next, .lfb-submit {
    background-color: var(--primary-green);
    color: white;
}

.lfb-prev:hover {
    background-color: #e0e0e0;
}

.lfb-next:hover, .lfb-submit:hover {
    background-color: var(--primary-dark);
}

/* Toggle switch for key handling */
.switch-field {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.switch-field label {
    margin-bottom: 0;
    margin-left: 10px;
}

.switch-field input[type="checkbox"] {
    position: relative;
    width: 40px;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: #c6c6c6;
    outline: none;
    border-radius: 20px;
    box-shadow: inset 0 0 5px rgba(0,0,0, .2);
    transition: .5s;
}

.switch-field input:checked[type="checkbox"] {
    background: var(--primary-green);
}

.switch-field input[type="checkbox"]:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    top: 0;
    left: 0;
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0,0,0, .2);
    transition: .5s;
}

.switch-field input:checked[type="checkbox"]:before {
    left: 20px;
}

/* Add-on services styling */
.addon-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.addon-service label {
    font-weight: 500;
}
