/* General Body Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

}
.contact-container{
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

/* Hero Banner Section */
.hero-banner {
    background-color: #6a6af1; /* A nice purple-blue color from the image */
    color: white;
    text-align: center;
    padding: 50px 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><g fill="%23FFFFFF" fill-opacity="0.05"><rect x="50" width="50" height="50"/><rect y="50" width="50" height="50"/></g></svg>'); /* Subtle pattern */
    
}

.hero-banner h1 {
    font-size: 3rem;
    font-weight: 600;
}

/* Main Contact Container */
.contact-container {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info, .map-container {
    flex: 1; /* Both columns will take equal space */
    min-width: 300px; /* Minimum width before wrapping */
}

/* Left Column: Contact Info */
.contact-info .sub-heading {
    color: #777;
    font-size: 1rem;
    margin-bottom: 10px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.contact-info .intro-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Contact Details List */
.contact-list {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: flex-start; /* Aligns icon to the top */
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #6a6af1; /* Matching icon color */
    margin-right: 20px;
    width: 30px; /* Fixed width for consistent alignment */
    text-align: center;
    margin-top: 5px; /* Adjust vertical alignment */
}

.contact-text p {
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
    color: #444;
}

/* Right Column: Map Container */
.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px; /* Ensure map has a good height */
    border: none;
    border-radius: 8px;
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        margin: 30px auto;
        padding: 15px;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }
}