/* -------------------------------
   THANK YOU PAGE – PREMIUM STYLE
--------------------------------*/
.nsc-thankyou-wrapper {
    max-width: 1100px;
    margin: 0px auto 60px;
    padding: 0px;
}

.nsc-thank-title {
    font-size: 34px;
    text-align: center;
    color: #BFA37C;
    margin-bottom: 10px;
}

.nsc-thank-sub {
    text-align: center;
    color: #ccc;
    margin-bottom: 40px;
}

.nsc-thank-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.nsc-thank-box {
    background: #0f0f0f;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.box-heading {
    font-size: 20px;
    color: #BFA37C;
    margin-bottom: 20px;
}

.nsc-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #1d1d1d;
    color: #ccc;
}

.nsc-row strong {
    color: #fff;
}

@media (max-width: 768px) {
    .nsc-thank-grid {
        grid-template-columns: 1fr;
    }
}