.contact-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 40px;
    display: flex;
    gap: 40px;
}

.contact-left {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-family: "InterFace", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 59px;
    letter-spacing: -1px;
    /* color: #584a35; */
    color: #212F2A;

    margin-bottom: 10px;
}

.contact-subtitle {
    font-family: "InterFace", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 25.5px;
    letter-spacing: 0;
    color: #332624bf;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    font-family: "InterFace Thin", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    color: #000000;
    background: none;
    border: 1px solid #211709f2;
    border-radius: 2px;
    padding: 12px;
    margin-bottom: 15px;
    width: 100%;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-checkbox {
    font-family: "InterFace", sans-serif;
    font-size: 12px;
    color: #4b4b4b;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contact-submit {
    width: 100%;
    height: 48px;
    padding: 2px 25px;
    background: none;
    border: 1px solid #1A2621;

    cursor: pointer;
    font-family: "InterFace", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background 0.3s;

color: #000000;





}

.contact-submit:hover {
    background-color: #0e1b15;
    color: white;
}

.contact-social {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    justify-content: start;
}
.contact-social a img {
    width: 44px;
    height: 44px;
}

/* Right section */
.contact-right {
    width: 100%;
    /* flex: 0 0 40%; */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    /* border-radius: 10px; */
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-details-title {
    font-family: "InterFace", sans-serif;
    font-weight: 400;
    font-size: 34px;
    letter-spacing: -0.5px;
    color: #332624;
    margin-top: 20px;
    margin-bottom: 10px;
}

.contact-info-row {
    border-top: 1px solid #3c4743;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.contact-info-label {
    font-family: "InterFace", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 15.6px;
    letter-spacing: 1px;
    color: #332624;
    margin-bottom: 4px;
}

.contact-info-value {
    font-family: "InterFace", sans-serif;
    font-weight: 400;
    width: 250px;
    font-size: 13px;
    color: #332624;
    text-align: end;
}

@media (max-width: 1024px) {
    .contact-title {
        font-size: 42px;
        line-height: 120%;
    }
}

@media (max-width: 1024px) {
    .contact-section {
        flex-direction: column;
        padding: 40px 25px !important;
    }

    .contact-section {
        padding: 20px;
    }

    .contact-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 32px;
    }
    
    .contact-details-title {
        font-size: 32px;
    }
}