selector h3, selector p{
    margin: 0 !important;
}
.container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 100%;
    margin: 100px 0;
}

.contact-list {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two equal columns */
    row-gap: 10px;
    column-gap: 35px; /* Spacing between grid items */
}

.contact-item {
    padding: 15px;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}
.contact-item h3{
    font-family: "Noto Sans";
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.contact-item p{
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;

}
.contact-item a {
    text-decoration: none;
    color: #3B494F;
}
.contact-item p:first-of-type{
    padding:10px 0 !important;
    max-width: 170px;
} 

.contact-item a:hover {
    text-decoration: underline;
}

/* Hover effect */
.contact-item:hover {
    background: rgba(244, 243, 243, 0.50);
    clip-path: polygon(100% 0, 100% 72%, 78% 100%, 0 99%, 0 0)!important;
}

.contact-item.active {
    background: rgba(244, 243, 243, 0.50); 
    clip-path: polygon(100% 0, 100% 72%, 78% 100%, 0 99%, 0 0);
    transition: background 0.3s ease;
}
.contact-item a.contact-phone{
    color: #E95847;
}
/* Map container */
.map-container {
    flex:1;
    width: 100%;
    height: auto;
}

#contact-map {
    width: 100%;
    height: 100%;
}
.map-container h2{
    font-family: "Qanelas Soft";
    font-size: 60px;
    color: #3B494F;
    font-style: normal;
    font-weight: 800;
    line-height: 68px; /* 113.333% */
    letter-spacing: -1.2px;
    margin: 0; 
    margin-bottom: 40px;
}
/* SVG Highlight Effect */

.highlight {
    fill: rgba(206, 206, 206, 0.5) !important;
    transition: fill 0.3s ease;
}

/* Responsive: Stacks in one column on smaller screens */
@media (max-width: 768px) {
    .container{
        flex-direction: column-reverse;
        padding-top: 95px;
    }
    .contact-list {
       /* grid-template-columns: 1fr; /* One column layout on smaller screens */
       column-gap: 10px;
    }
    .contact-item{
        padding: 15px;
    }
    .contact-item h3{
        font-size: 14px;
        line-height: 1;
    }
    .contact-item p{
        font-size: 11px;
    }
    .map-container h2{
        top:-60px !important;
        padding-left: 20px;
        line-height: 1.1;
    }
}

@media only screen and (max-width:1024px){
    .container{
        flex-direction: column;
    }
    .map-container h2{
        position: absolute;
        font-size: 40px;
        top: -60px;
    }
}