.elementor-1772 .elementor-element.elementor-element-3325498{--display:flex;}/* Start custom CSS for html, class: .elementor-element-3f7f76f */.thank-you-message {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff, #f1f1f1);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-message h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.thank-you-message p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.thank-you-message .contact-link {
    display: inline-block;
    padding: 14px 35px;
    font-size: 1.1rem;
    color: #fff;
    background-color: #4caf50;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.thank-you-message .contact-link:hover {
    background-color: #3e8e41;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.thank-you-message .contact-link:active {
    transform: translateY(2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .thank-you-message {
        padding: 30px;
    }

    .thank-you-message h1 {
        font-size: 2.2rem;
    }

    .thank-you-message p {
        font-size: 1rem;
    }

    .thank-you-message .contact-link {
        padding: 12px 30px;
        font-size: 1rem;
    }
}/* End custom CSS */