.contact-container-wrap {
    background-color: #f6f6f6;
    padding: 50px 0;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.contact-left,
.contact-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.contact-left {
    border-right: 1px solid #ddd;
}

.contact-right {
    border-left: 1px solid #ddd;
}

.custom-form,
.contact-thumb {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #ddd;
    padding: 12px 15px;
    margin-bottom: 15px;
}

.contact-form button {
    background-color: #e9f6ed;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #e9f6ed;
}

.contact-thumb a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-thumb a:hover {
    color: #1e6c39;
}

.google-map {
    border: none;
    border-radius: 8px;
}

