/* contact.css */

/* General Styles */
body {
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body takes the full height of the viewport */
    margin: 0;
    padding: 0;
}

.contact-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-grow: 1; /* This makes the contact container grow to fill available space */
    padding: 20px;
}

/* Map Styles */
#map {
    height: 400px;
    width: 60%;
    margin-right: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Contact Information Styles */
.contact-info {
    width: 35%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Style individual contact details */
.contact-info p {
    margin-bottom: 15px;
}

/* Style clickable links */
.contact-info a {
    color: #007bff;
    text-decoration: none;
}

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