.banner img {
    width: 100%;
    height: 100%;
    color: white;
}

.banner-text {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-color: lightblue;
    color: black;
    padding: 5px;
    font-size: 2rem;
    font-weight: bold;
    width: 100%;
    text-align: center;

}

/* Content Section */
.content {
    padding: 60px 12%;
    text-align: center;
    background-color: #f7f8f9 !important;
}

.global-content {
    overflow: hidden;
}

.content h2 {
    font-size: 2.2rem;
    color: #2661a9;
    margin-bottom: 15px;
    font-weight: bold;
}

.content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Call-to-Action Button */
.content a {
    display: inline-block;
    padding: 14px 28px;
    background: #366cb9;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease-in-out, transform 0.2s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.content a:hover {
    background: #00a51b;
    transform: translateY(-2px);
}



/* Google Maps Section */
.map-section {
    background: #f8f9fa;
    padding: 60px 10%;
    text-align: center;
    background-color: #E7F2FA !important;
}

.map-section h2 {
    font-size: 2rem;
    color: #2661a9;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.map-section h2::before {
    content: "";
    position: absolute;
    bottom: -15px;
    height: 3px;
    width: 150px;
    background: #366cb9;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Each Map Container */
.map-container {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

/* Map Styling */
.map {
    width: 50%;
    height: 300px;
    border-right: 2px solid #000;
}

/* Address Details */
.map-details {
    width: 50%;
    padding: 20px;
    text-align: left;
}

.map-details h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.map-details p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
}

.map-details a {
    color: #2661a9;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content {
        padding: 50px 8%;
    }

    .content h2 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    .banner-text {
        font-size: 1.2rem;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 40px 6%;
    }

    .content h2 {
        font-size: 1.8rem;
    }

    .content p {
        font-size: 1rem;
    }

    .banner-text {
        font-size: 1rem;
        padding: 6px 14px;
    }

    .map-container {
        flex-direction: column;
    }

    .map {
        width: 100%;
        border-right: none;
    }

    .map-details {
        width: 100%;
        text-align: center;
        padding: 15px;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 5%;
    }

    .content h2 {
        font-size: 1.6rem;
    }

    .content p {
        font-size: 0.95rem;
    }

    .banner-text {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}