#multiStepForm {
    max-width: 600px;
    margin: 0 auto;
    background: #f7f7f7;
    padding: 25px;
    border-radius: 8px;
}

#multiStepForm label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

#multiStepForm input,
#multiStepForm select,
#multiStepForm textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    font-size: 16px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.btn-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.next-btn,
.prev-btn,
.submit-btn {
    background: #005bbb;
    color: #fff;
    padding: 12px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    flex: 1;
    text-align: center;
}

.prev-btn {
    background: #666;
}

.next-btn:hover,
.submit-btn:hover {
    background: #004a96;
}

.prev-btn:hover {
    background: #555;
}


.thankyou-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.thankyou-card {
    background: #fff;
    padding: 40px 30px;
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.thankyou-card h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.thankyou-card p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.home-btn {
    display: inline-block;
    background: #005bbb;
    color: #fff;
    padding: 14px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.2s ease;
}

.home-btn:hover {
    background: #004a96;
}

.next-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#progress-container {
    width: 100%;
    background: #e6e6e6;
    height: 8px;
    border-radius: 4px;
    margin-bottom: 25px;
}

#progress-bar {
    height: 8px;
    width: 0%;
    background: #005bbb;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.next-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hs-form-wrapper {
    max-width: 650px;
    margin: 0 auto 40px auto;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.hs-form-wrapper h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 26px;
    color: #333;
    font-weight: 700;
}
#progress-container {
    margin-top: 10px;
    margin-bottom: 25px;
}


