.ct-final2-wrap {
    max-width: 920px;
    margin: 30px auto;
    background: #fff;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(30,50,80,0.06);
    font-family: inherit;
}

.ct-steps-indicator {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.ct-steps-indicator .step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #bfbabaf5;
    color: black;
    padding: 6px 0;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}
.ct-steps-indicator .step.active {
    background: #045487;
    color: #fff;
    box-shadow: 0 6px 18px rgba(45,149,255,0.14);
}

.ct-step-panel {
    display: none;
}
.ct-step-panel.active {
    display: block;
}

.col {
    flex: 1;
}
.field {
    margin-bottom: 12px;
}
.field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #212121;
}
input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e1e8ef;
    border-radius: 8px;
    box-sizing: border-box;
}

.actions {
    margin-top: 14px;
}
.ct-btn {
    background: #045487;
    color: #fff;
    padding: 10px 30px;
    border-radius: 35px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.ct-btn.outline {
    background: transparent;
    color: #045487;
    border: 1px solid #045487;
    padding: 10px 30px;
}

.summary-box {
    background: #f7f7f7;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ebeef1;
}

.formheading {
    text-align: center;
    font-size: 26px;
    color: #045487;
}

.subheadingtext {
    text-align: center;
    color: #787272;
    margin-top: -20px;
}

#ct-amount-heading {
    text-align: center;
    font-size: 16px;
    color: #ed3237;
}

/* ✅ Mobile Responsive Fixes */
@media (max-width: 768px) {

    .ct-final2-wrap {
        padding: 18px;
    }

    .row {
        display: block !important;
    }

    .col {
        width: 100%;
        margin-bottom: 10px;
    }

    input, select {
        font-size: 14px;
    }

    .ct-btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .formheading {
        font-size: 22px;
    }

    #ct-amount-heading {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .ct-steps-indicator .step {
        width: 30px;
        height: 30px;
        font-size: 12px;
        padding: 4px 0;
    }

    .ct-final2-wrap {
        padding: 14px;
    }

    .formheading {
        font-size: 20px;
    }
}
