body {
    background-color: #f4f4f4;
}

.image-container {
    margin: 0 auto; /* center the container horizontally */
    border: 15px solid white; /* original border */
    border-bottom: 80px solid white; /* changed bottom border */
    max-width: 1080px;
    /* filter: drop-shadow(5px 5px 10px #ccc); */
}
.image-container img {
    display: block;
    width: 100%; /* set the width of the image to 100% of the container width */
    height: auto; /* maintain the aspect ratio of the image */
    /* filter: grayscale(100%);  make the image grayscale */
    transition: filter 0.3s ease; /* add a smooth transition for the filter effect */
}

.image-container img:hover {
    filter: grayscale(0%); /* return the image to its original color on hover */
}


.banner-container {
    background-color: #fff;
}
.logo-banner {
    margin: 0 auto; /* center the container horizontally */
    max-width: 1080px;
}
.logo-banner img {
    display: block;
    width: 100%; /* set the width of the image to 100% of the container width */
    height: auto; /* maintain the aspect ratio of the image */
    
}


.text-block-1 {
    margin: 0 auto; /* center the container horizontally */
    /*border: 15px solid white; /* original border */
    /*border-bottom: 80px solid white; /* changed bottom border */
    max-width: 1080px;
    
}

.text-block-1 div {
    display: block;
    width: 100%; 
    height: auto;
    font-size: 1.5em;
    font-family:Georgia, 'Times New Roman', Times, serif;
    color: #404040;
    text-align: center;
}

.text-block-1 div img {
    max-width: 400px;
    height:auto;
}

.map-block {
    margin: 0 auto; /* center the container horizontally */
    border: 15px solid white; /* original border */
    border-bottom: 80px solid white; /* changed bottom border */
    max-width: 1080px;
    
}

.map-block div {
    display: block;
    width: 100%; 
    height: auto;
    font-size: 1.2em;
    font-family:Georgia, 'Times New Roman', Times, serif;
    color: #404040;
    text-align: center;
}

.map-block div iframe {
    display: block;
    width: 100%; 
    min-height: 400px;

}

  