.page-thank-you {
    padding: 140px 0 100px;
    background: #ffffff;
}

.thank-you-box {
    max-width: 980px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #125C91;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 18px 40px rgba(18, 92, 145, 0.18);
}

.thank-you-icon span {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.thank-you-box .section-title {
    margin-bottom: 42px;
}

.thank-you-box .section-title h2 {
    margin-bottom: 18px;
}

.thank-you-box .section-title p {
    max-width: 720px;
    margin: 0 auto;
}

.thank-you-info {
    margin-top: 35px;
}

.thank-you-item {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(14, 56, 76, 0.10);
    border-radius: 22px;
    padding: 30px 24px;
    text-align: left;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.06);
}

.thank-you-item-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #EFF8FF;
    color: #125C91;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 18px;
}

.thank-you-item h2,
.thank-you-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0E384C;
    margin-bottom: 10px;
}

.thank-you-item p {
    margin: 0;
    color: #527282;
    font-size: 15px;
    line-height: 1.6;
}

.thank-you-notice {
    margin: 34px auto 0;
    max-width: 720px;
    background: #EFF8FF;
    border: 1px solid rgba(18, 92, 145, 0.12);
    border-radius: 18px;
    padding: 18px 24px;
}

.thank-you-notice p {
    margin: 0;
    color: #0E384C;
    font-size: 16px;
    line-height: 1.6;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.thank-you-actions .btn-outline {
    background: transparent;
    color: #125C91;
    border: 1px solid rgba(18, 92, 145, 0.22);
}

.thank-you-actions .btn-outline:hover {
    background: #125C91;
    color: #ffffff;
}

@media only screen and (max-width: 767px) {
    .boxes {
        gap: 16px;
    }
    
    .page-thank-you {
        padding: 110px 0 70px;
    }

    .thank-you-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 22px;
    }

    .thank-you-icon span {
        font-size: 34px;
    }

    .thank-you-item {
        margin-bottom: 18px;
        padding: 26px 22px;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .thank-you-actions .btn-default {
        width: 100%;
        justify-content: center;
    }
}