/* Thank You Page Container - WIDER VERSION */
.thank-you-container {
    max-width: 900px; /* Increased from 600px to allow one-line text */
    margin: 80px auto;
    padding: 60px 50px !important;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    text-align: center;
}

/* Heading Style - Adjusted for Single Line */
.thank-you-container h2 {
    color: #2c3e50;
    font-size: 2.4rem; /* Slightly larger for the wider box */
    margin-bottom: 20px;
    font-weight: 700;
    white-space: nowrap; /* Forces the text to stay on one line */
}

/* Responsive adjustment for Mobile (so it doesn't break the screen) */
@media (max-width: 768px) {
    .thank-you-container h2 {
        white-space: normal; /* Allows wrapping on small phones */
        font-size: 1.8rem;
    }
    .thank-you-container {
        margin: 40px 20px;
        padding: 40px 20px !important;
    }
}

/* Return to Home Button */
.btn-home {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background-color: #3498db;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-home:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}