.contact-main-container{
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) 96px minmax(360px, 1.15fr);
    gap: clamp(24px, 3vw, 34px);
    align-items: stretch;
    padding: var(--container-padding);
}

.contact-panel{
    min-width: 0;
    align-self: stretch;
}

.contact-main-container > section:first-child{
    max-width: 100%;
}

.contact-main-container > section:last-child{
    width: 100%;
}

.contact-main-divider{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: 0 10px;
}

.contact-main-divider-line{
    position: absolute;
    top: 32px;
    bottom: 32px;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    border-left: 2px dashed rgba(8, 47, 93, 0.14);
}

.contact-main-divider-icon{
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp-green);
    color: var(--light-white);
    box-shadow: 0 12px 22px rgba(8, 47, 93, 0.22);
}

.contact-main-divider-icon svg{
    width: 22px;
    height: 22px;
}

@media (max-width: 1024px){
    .contact-main-container{
        grid-template-columns: 1fr;
    }

    .contact-main-divider{
        display: none;
    }

    .contact-main-container > section:first-child{
        max-width: none;
    }
}

@media (min-width: 1025px){
    .contact-main-container > section:first-child{
        padding-right: 8px;
    }

    .contact-main-container > section:last-child{
        padding-left: 8px;
    }
}

@media (max-width: 768px){
    .contact-main-container{
        padding: 24px 16px;
        gap: 18px;
    }
}