.thank-you-page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 60vh;
    text-align: center;
    padding: 40px 20px;
    font-family: "Inter", sans-serif;
}

.thank-you-container h1 {
    font-size: 3rem;
    color: #2a5d8f;
    margin-bottom: 20px;
}

.thank-you-container p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.thank-you-container .btn-primary {
    padding: 12px 25px;
    background-color: #2a5d8f;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.thank-you-container .btn-primary:hover {
    background-color: #99CCFF;
    color: #052146;
    transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 650px) {
    .thank-you-container .btn-primary {
        width: 100%;       /* full width on mobile */
        padding: 12px 0;   /* less horizontal padding for small screens */
    }
}