.contact-section {
    position: relative;
    width: 100%;
    min-height: 800px;
    display: flex;
    font-family: "Monserrat", Sans-serif !important;
    overflow: hidden;
}

.contact-section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-section-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-section-container {
    display: flex;
    width: 100%;
    position: relative;
    z-index: 2;
    min-height: 800px;
}

.contact-section-left {
    width: 50%;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.contact-section-right {
    width: 50%;
}

.contact-section-content {
    position: absolute;
    width: 80%;
    left: 30%;
    background-color: #FFFFFF;
    padding: 100px 80px;
    border-radius: 6px;
}

.contact-section-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
}

.contact-section-logo img {
    max-width: 180px;
    height: auto;
}

.contact-section-title {
    font-size: 42px;
    font-weight: 300;
    color: #2f2f2f;
    text-transform: uppercase;
    margin: 0 0 50px;
}

.contact-section-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 35px;
}

.contact-info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-info-icon .hs-font-icon {
    color: var( --hs-color-primary, #A8875E );
    font-size: 30px;
}

.contact-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-info-name {
    font-size: 16px;
    font-weight: 500;
    color: #2F2F2F;
    margin-bottom: 12px;
    text-transform: none;
}

.contact-info-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info-detail {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    line-height: 24px;
}

.contact-section-button-wrapper {
    width: max-content;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
}

.contact-section-button {
    padding: 22px 45px;
    background: #FFFFFF;
    color: #2F2F2F;
    border: 1px solid #D1C5B5;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-section-button:hover {
    background: #D1C5B5;
    color: #2F2F2F;
    border: 1px solid #D1C5B5;
}
@media (max-width: 1560px) {
    .contact-section-content {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .contact-section {
        min-height: auto;
    }
    
    .contact-section-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .contact-section-left {
        width: 100%;
        padding: 160px 14px 80px;
        align-items: flex-start;
        background: transparent;
    }
    
    .contact-section-right {
        width: 100%;
        min-height: 0px;
    }
    
    .contact-section-content {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        left: 0;
        width: 100%;
        max-width: 100%;
        padding: 50px 24px 70px;
        box-sizing: border-box;
    }
    
    .contact-section-logo {
        margin-bottom: 24px;
    }
    
    .contact-section-logo img {
        max-width: 140px;
    }
    
    .contact-section-title {
        font-size: 28px;
        margin-bottom: 32px;
        margin-top: 40px;
    }
    
    .contact-section-info {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 30px;
    }
    
    .contact-info-item {
        gap: 16px;
    }
    
    .contact-info-icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    
    .contact-section-button {
        width: 100%;
        padding: 16px 24px;
        text-align: center;
        box-sizing: border-box;
    }
}
