body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f0f2f5; /* Light grey background */
    color: #333;
}

/* Hero Section */
.hero-contact {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1500x400?text=Contact+Us+Background') no-repeat center center/cover;
    padding: 80px 0;
    margin-bottom: 30px;
    color: white;
}

.hero-contact h1 {
    font-size: 3.5rem;
    font-weight: bold;
}

.hero-contact p.lead {
    font-size: 1.25rem;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Form Specifics */
.form-label {
    font-weight: 600;
    color: #495057;
}

.form-control, .form-select {
    border-radius: 8px;
    padding: 10px 15px;
    border: 1px solid #ced4da;
}

.form-control:focus, .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Contact Information List */
.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info li i {
    font-size: 1.5rem;
    color: #007bff; /* Primary color for icons */
    margin-top: 5px; /* Align icon with text better */
}

.contact-info li div {
    flex-grow: 1;
}

/* Social Icons */
.social-icons .social-icon-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-icons .social-icon-link:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Map Styling */
.map-container {
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
    height: 0;
    border-radius: 8px;
}

.map-container iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 8px; /* Match card border-radius */
}

/* Footer (assuming common styles from style.css) */
footer {
    background-color: #343a40; /* Darker footer */
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 0;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

footer a:hover {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-contact h1 {
        font-size: 2.5rem;
    }
    .hero-contact p.lead {
        font-size: 1rem;
    }
    .contact-info li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-info li i {
        margin-bottom: 10px;
        margin-right: 0;
    }
}