/**
 * Styles for contact form thank you page
 */

.contact-page-header {
    background-color: #f5f5f5;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

.contact-page-header h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.contact-thanks-wrapper {
    max-width: 800px;
    margin: 0 auto 60px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 20px;
}

.thanks-icon svg {
    width: 80px;
    height: 80px;
    color: #28a745;
}

.contact-thanks-wrapper h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
}

.thanks-message {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.back-to-home {
    margin-top: 30px;
}

.home-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.home-button:hover {
    background-color: #0069d9;
}

@media (max-width: 768px) {
    .contact-thanks-wrapper {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .thanks-icon svg {
        width: 60px;
        height: 60px;
    }

    .contact-thanks-wrapper h2 {
        font-size: 22px;
    }

    .thanks-message {
        font-size: 15px;
    }
}