.contact-us-section {
    display: flex;
    justify-content: space-between;
    padding: 64px 112px;
    gap: 48px;
}

.form-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 32px;
    padding: 32px;
    height: fit-content;
    border: none;
    box-shadow: 0px 4px 16px 0px rgba(17, 34, 17, 0.05);
    border-radius: 10px;
}

.contact-form,
.contact-info-text,
.contact-info-section,
.contact-info-section .info-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form .form-group,
.info-text p {
    margin-bottom: 0px;
}

.contact-form .form-group textarea {
    height: 108px;
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    font-family: "Circular Std Book", Arial, Helvetica, sans-serif;
}

.contact-form button {
    margin-top: 8px;
    margin-left: auto;
    color: white;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1.5;
    margin-top: 36px;  
}

.contact-us-info {
    display: flex;
    gap: 16px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E4E7EC;
}

.contact-info-text {
    gap: 12px;
}

.contact-info-text h2 {
    font-size: 2.5em;
    margin-bottom: 0px;
    color: #0F1416;
}

.contact-info-text p {
    font-size: 1em;
    line-height: 26px;
    margin-bottom: 0px;
    color: #6B7280;
}

.contact-info-section {
    gap: 30px;
}

.contact-info-section .info-text {
    gap: 16px;
}

.info-text p {
    color: #0F1416;
    line-height: 26px;
}

.info-text p:first-child {
    color: #A6AAAC;
    font-size: 1em;
}

.info-text p:nth-child(2) {
    font-size: 1.125em;
}

.info-text a {
    color: #0F1416;
}

.info,
.second-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-text ul li {
    list-style: none;
}

.google-map {
    padding: 0px 112px;
}

#contact-form button {
    color: white;
    background-color: #093BA8;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

@media (max-width: 768px) {
    .contact-us-section {
        display: flex;
        flex-direction: column;
        padding: 64px 24px;
    }

    .form-container {
        padding: 16px;
    }

    .info-icon img {
        max-width: fit-content;
    }

    .google-map {
        padding: 0px 24px;
    }
}
  