/* Styles for Thank You Page */

.thanks {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F5F5DC;
    padding: 40px 0;
}

.thanks__container {
    max-width: 600px;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 50px;
    text-align: center;
}

.thanks__icon {
    margin-bottom: 30px;
}

.thanks__icon i {
    font-size: 80px;
    color: #008080;
}

.thanks__title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #8B4513;
}

.thanks__message {
    margin-bottom: 20px;
    color: #555555;
    line-height: 1.7;
}

.thanks__contact {
    margin-bottom: 30px;
    color: #666666;
}

.thanks__contact a {
    color: #008080;
    transition: color 0.3s ease;
}

.thanks__contact a:hover {
    color: #006666;
}

.thanks__button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #8B4513;
    color: #FFFFFF;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.thanks__button:hover {
    background-color: #6B3100;
    color: #FFFFFF;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .thanks__container {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .thanks__container {
        padding: 30px;
    }
    
    .thanks__title {
        font-size: 28px;
    }
    
    .thanks__icon i {
        font-size: 60px;
    }
}
