.section-4 {
    position: relative;
    background-color: #FFFFFF;
    max-width: 1000px;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    padding: 2rem 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.section-4 h2 {
    font-size: 3rem;
    color: #07124D;
    letter-spacing: 2px;
    font-family: 'Syne', sans-serif;
    font-weight: lighter;
    text-align: left;
    margin-bottom: 0.5rem;
}

.section-4 p {
    font-size: 1rem;
    color: #666;
    text-align: left;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.contact {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.contact-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-align: left;
}

.contact-item span-1 {
    font-size: 1rem;
    color: #181818;
    font-family: 'Roboto', sans-serif;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 70%;
    height: 90%;
    object-fit: cover;
    margin-left: 20%;
    border-radius: 8px;
   
}

.image-moble {
    display: none;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .section-4 {
        padding: 1.5rem 1rem;
    }
    
    .contact {
       
        gap: 2rem;
        padding: 1rem;
    }
    
    .section-4 h2 {
        font-size: 2.5rem;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .img-desk {
        display: none;
    }
    
    .image-moble {
        display: block;
    }
    .contact-image img {
        width: 70%;
        height: 64%;
    }
}

@media screen and (max-width: 480px) {
    .section-4 h2 {
        font-size: 2rem;
    }
    
    .contact {
        padding: 0.5rem;
        gap: 1.5rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    .contact-image img {
        height: 87%;
    }
}