* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.thank-you-section {
    height: 100vh;
    background: linear-gradient(135deg, #eaf2ff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.thank-you-box {
    background: #fff;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.thank-you-box h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #0a58ca;
}

.thank-you-box p {
    font-size: 16px;
    color: #444;
    margin-bottom: 8px;
}

.small-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 22px;
    background: #0a58ca;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
}

.btn:hover {
    background: #084298;
}

.btn-outline {
    background: transparent;
    color: #0a58ca;
    border: 2px solid #0a58ca;
}

.btn-outline:hover {
    background: #0a58ca;
    color: #fff;
}

/* Mobile */
@media (max-width: 480px) {
    .thank-you-box h1 {
        font-size: 26px;
    }
}
