* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #3498db;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #85c1e9;
    border-radius: 10px;
    z-index: -1;
}

header h1 {
    font-size: 2em;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color:white;
}

header h3 {
    font-size: 1.2em;
    opacity: 0.8;
    color: white;
    padding: 20px;
}


@media (max-width: 600px) {
    header h1 {
        font-size: 1.5em;
    }

    header h3 {
        display: none;
    }
}

nav {
background-color: #5dade2;
padding: 20px;
text-align: center;
border-radius: 0; /* Change this value to 0 for a square shape */
margin-bottom: 0;

position: relative;
}

nav::before {
content: '';
position: absolute;
top: 0;
left: 0; 
width: 100%;
height: 100%;
background-color: #76C7EC;
border-radius: 0; /* Change this value to 0 for a square shape */
z-index: -1;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
    display: inline-block;
    font-size: 1.2em;
}

nav a:hover {
    color: #15515f;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    max-width: 100%;
    margin: 20px auto;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .content {
        margin: 20px 0;
    }
}

.map-container {
    height: 300px; /* Adjust the height as needed */
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px; /* Add margin to separate the map from other content */
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.image-container {
    max-height: 300px; /* Set a maximum height for the image container */
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px; /* Add margin to separate the sections */
}

img {
    width: auto; /* Allow the image to scale proportionally */
    max-width: 100%; /* Set a maximum width for the image */
    max-height: 100%; /* Set a maximum height for the image */
    height: auto; /* Allow the image to scale proportionally */
    object-fit: cover; /* Maintain the aspect ratio while covering the container */
}

        iframe {
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 15px;
            object-fit: cover;
        }

        .description {
            margin-top: 20px;
        }

        .scroll-down {
            position: absolute;
            bottom: 20px;
            cursor: pointer;
            font-size: 2em;
            color: #ffffff;
        }

        