/* Thank You Page Styling */
.thank-you-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    text-align: center;
    /* background: linear-gradient(135deg, #f2f8ff, #ecf2fc); */
    padding: 60px 20px;
}

.thank-you-container {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    animation: fadeIn 1s ease-in-out;
}

.thank-you-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2a5d8f; /* American / Manufacturer color */
}

.thank-you-container p {
    font-size: 1.2rem;
    color: #B00F0F; /* Refrigeration color */
    margin-bottom: 30px;
}

.thank-you-container .btn-primary {
    padding: 14px 32px;
    font-size: 1rem;
    background: #2a5d8f;
    color: #fff;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.thank-you-container .btn-primary:hover {
    background: #1f4568;
    transform: translateY(-2px);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}

/* Mobile */
@media (max-width: 650px) {
    .thank-you-container .btn-primary {
        width: 100%;       /* full width on mobile */
        padding: 12px 0;   /* less horizontal padding for small screens */
    }
}
