.thank-you-container {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.thank-you-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.checkmark-circle {
    color: #4CAF50;
    font-size: 5rem;
    margin-bottom: 20px;
    animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}

.thank-you-card h1 {
    color: #1a237e;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.confirmation-message {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}

.next-steps {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
}

.next-steps h2 {
    color: #1a237e;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.next-steps i {
    color: #1a237e;
    margin-top: 3px;
}

.contact-reminder {
    margin: 30px 0;
    padding: 15px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.contact-reminder a {
    color: #1a237e;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0 10px;
}

.contact-reminder a:hover {
    color: #303f9f;
    text-decoration: underline;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.home-btn, .apply-again-btn {
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-btn {
    background: #1a237e;
    color: white;
}

.home-btn:hover {
    background: #303f9f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}

.apply-again-btn {
    background: #f5f5f5;
    color: #1a237e;
    border: 1px solid #ddd;
}

.apply-again-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}