/* Map Section */
.map-section {
    padding: 20px;
    margin-bottom: 40px; /* Gap between sections */
    text-align: center;
}

 .map-container {
    width: 100%;
    height: 400px; 
    margin: 0 auto;
}

/*Temporary Map Code*/
/* .map-container {
    width: 100%;
    height: 400px; 
    margin: 0 auto;
}

.centered-text {
    font-size: 24px;
    color: green;
    font-weight: bold; 
    text-align: center;
} */

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* Images Section */
.images-section {
    padding: 20px;
    margin-bottom: 40px; /* Gap between sections */
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.image-row {
    display: flex;
    justify-content: center;
    margin-bottom: 20px; /* Gap between rows */
}

.image-row a {
    margin: 0 10px; /* Gap between images */
}

.image-row img {
    width: 400px; /* Adjust size of images */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px;
    transition: transform 0.3s;
}

.image-row img:hover {
    transform: scale(1.05); /* Hover effect */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .image-row img {
        width: 80px; /* Adjust image size for smaller screens */
    }
    
    .map-container {
        height: 300px; /* Adjust map height for smaller screens */
    }
}
