/* General Styles */
body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    color: #333;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #333;
    margin-right: 1rem;
}

.navbar-nav .nav-link.active {
    color: #556ee6;
}

.btn-primary {
    background-color: #556ee6;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #4455cc;
}

/* Contact Section */
.contact-section {
    /* background-color: #f2f2f2; */
    padding: 60px 0;
}

.contact-image {
    max-width: 80%;
    /* Image is slightly smaller than the column size */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}