.thanks {
    text-align: center;
    margin-top: 50px;
}

.thanks img.checkmark {
    width: 70px;
}

.thanks h1 {
    color: #60d493;
    font-size: 40px;
    font-weight: 700;
}

.thanks p {
    font-size: 17px;
    color: #787878;
    line-height: 32px;
    font-weight: 500;
}

.approval-box {
    background-color: #e9f3ff;
    padding: 20px 30px;
    border-radius: 24px;
    margin: 40px auto;
    max-width: 1000px;
    box-shadow: 0 30px 60px rgba(0, 51, 117, 0.2);
    margin-top: 100px;
}

.approval-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.approval-text {
    color: #043373;
    font-size: 18px;
    font-weight: 500;
    max-width: 50%;
    text-align: left;
}

.approval-btn {
    border-radius: 50px;
    font-weight: 700;
    padding: 0 30px;
    height: 52px;
    line-height: 52px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ff9900 !important;
}

.approval-btn i {
    margin-left: 10px;
    font-size: 16px;
}

strong {
    font-weight: 700;
}

.next-steps-section {
    padding: 4rem 0 4rem;
}

.next-steps-section h4 {
    color: #043373;
    margin-top: -20px;
    margin-bottom: 30px;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    transition: box-shadow 0.3s ease;
    min-height: 330px;
    box-shadow: 0 3px 20px rgba(33, 37, 41, 0.1);
    -webkit-box-shadow: 0 3px 20px rgba(33, 37, 41, 0.1);
    padding: 30px 30px 40px;
    margin-bottom: 20px;
}

.step-card h6 {
    color: #212529;
    font-size: 20px;
    font-weight: 500 !important;
}

.step-icon {
    width: 60px;
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 16px;
    margin-top: 10px;
    color: #a3a3a3;
    line-height: 20px;
}

@media screen and (max-width: 930px) {
    .approval-box {
        margin-top: 50px;
    }

    .approval-text {
        max-width: 100%;
        text-align: center;
    }

    .approval-btn {
        margin: auto;
    }

    .step-card {
        padding: 1.5rem 1rem;
        margin-bottom: 20px;
    }

    .step-icon {
        width: 50px;
    }

    .next-steps-section h4 {
        font-size: 22px;
    }
}

@media screen and (max-width: 600px) {
    .approval-content {
        flex-direction: column;
        text-align: center;
    }

    .approval-btn {
        width: 100%;
        justify-content: center;
        line-height: 20px;
        font-size: 15px;
    }

    .step-card {
        min-height: auto !important;
    }
}