#contact {
    background: #eee;
    padding: 6rem 1.5rem;
}

#contact .container {
    padding: 0;
}


#contact .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

#contact .header h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    color: var(--dark-color);
    text-align: center;
    margin: 0 0 2rem;
}

#contact .header p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: var(--dark-light-color);
    max-width: 800px;
    margin-bottom: 0;
}

#contact form {
    max-width: 400px;
    margin: 0 auto;
}

#contact .hp-input {
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

#contact .hp-input textarea {
    min-height: 90px;
}

#contact form input:focus,
#contact form textarea:focus {
    border-radius: 0.25rem;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25)!important;

}

#contact form input,
#contact form textarea {
    background-color: white;
    border-radius: 0.25rem;
}

#contact form input,
#contact form textarea,
#contact form label {
    padding-left: 1rem;
    padding-right: 1rem;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
}

.contact-toast {
    position: fixed;
    top: 20px;
    right: -20px;
    min-width: 320px;
    max-width: 350px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1070;
}

.contact-toast.show {
    transform: translateX(-40px);
}

.contact-toast .toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    margin-bottom: 0.5rem;
}

.contact-toast .toast-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-toast .toast-title {
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.contact-toast .check-circled {
    width: 18px;
    height: 18px;
    margin-bottom: 2px;
}

.contact-toast .toast-body {
    color: var(--gray-color);
}

.contact-toast .btn-close {
    padding: 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem 0.5rem;
    cursor: pointer;
}

.recaptcha-feedback {
    display: none;
    text-align: center;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.recaptcha-feedback.show {
    display: block;
}