
.our-contact {
    padding: 80px 0 80px 0;
}

.m_title {
    color: #006B5B;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact_info_widget {
    padding: 0;
}

    .contact_info_widget p {
        color: #333;
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background-color: white;
    color: #006B5B;
    padding: 0;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s;
    font-size: 15px;
    overflow: hidden;
}

    .email-button:hover {
        color: #006B5B;
        transform: translateY(-2px);
    }

.email-icon-box {
    background-color: #006B5B;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-button i {
    font-size: 16px;
    color: white;
}

.email-text {
    padding: 10px 18px 10px 12px;
}

.form_grid {
    background-color: white;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

    .form_grid .title {
        color: #006B5B;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 25px;
        margin-top: 0;
    }

.form-control {
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 14px;
    margin-bottom: 18px;
    background-color: #fafafa;
    color: #333;
}

    .form-control:focus {
        border-color: #006B5B;
        box-shadow: 0 0 0 0.2rem rgba(0, 107, 91, 0.1);
        background-color: white;
        outline: none;
    }

    .form-control::placeholder {
        color: #999;
        font-size: 14px;
    }

textarea.form-control {
    resize: vertical;
    min-height: 180px;
}

.btn-contact {
    background-color: #006B5B;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

    .btn-contact:hover {
        background-color: #005248;
    }

@@media (max-width: 991px) {
    .contact_info_widget {
        margin-bottom: 40px;
    }
}
