.contact_us {
    padding: 3em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 5em;
    background: linear-gradient(135deg, #f8f9fa, #e0f7ff);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin: 2em auto;
    max-width: 1200px;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact1 {
    background-color: white;
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    max-width: 350px;
    transition: transform 0.2s ea   , box-shadow 0.2s ease;
}

.contact1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.contact1 h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    color: #0077b6;
    margin-bottom: 1em;
}

.contact1 p {
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    color: #444;
    margin: 0.4em 0;
}

.contact1 a {
    color: #0096c7;
    text-decoration: none;
    font-weight: 600;
}

.contact1 a:hover {
    text-decoration: underline;
}

#map {
    height: 450px;
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Responsive Layout */
@media (max-width: 768px) {
    .contact_us {
        flex-direction: column;
        padding: 2em 1em;
    }

    #map {
        height: 300px;
    }

    .contact1 {
        width: 100%;
    }
}