/* Existing styles... */

/* Hero Section */
.hero {
    background-color: #283593;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

/* Contact Cards */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card img {
    width: 50px; /* Adjust size as needed */
    margin-bottom: 15px;
}

.contact-card h2 {
    margin: 10px 0;
    color: #283593;
}

.contact-card p {
    color: #555;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-card a {
    text-decoration: none;
    color: inherit;
}

.map-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.map-section h2 {
    margin-bottom: 20px;
    color: #283593;
}
