        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        body {
            background-color: #f5f5f5;
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
            padding: 15px 20px;
            color: #262626;
        }
        .logo {
            height: 50px;
            font-size: 1.5em;
            font-weight: bold;
        }
        .logo img {
            height: 100%;
            width: auto;
        }
        .nav-links {
            z-index: 10;
	    display: flex;
            gap: 20px;
        }
        .nav-links a {
            font-weight: bold;
            color: #262626;
            text-decoration: none;
        }
        .burger {
            display: none;
            font-size: 1.5em;
            cursor: pointer;
        }
        .hero {
            width: 100%;
            background-color: #262626;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin: 0 auto;
        }
	.map_container {
            position: relative;
            width: 100%;
            max-width: 1100px;
            background-color: #262626;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2em;
            overflow: hidden;
            aspect-ratio: 2 / 0.8;
            margin: 0 auto;

	}
        .map {
	    padding: 10px 0;
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 2;
        }

        .map_table {
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            z-index: 1;
            font-family:'VT323';
            font-size: 0.5vh;
        }

        .content-section {
            padding: 50px;
            text-align: left;
        }
        .dark {
            background-color: #222;
            color: white;
        }
        .light {
            background-color: white;
        }
        .footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 20px;
        }
        .footer a {
            color: white;
            margin: 0 10px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                background-color: #fff;
                width: 100%;
                padding: 10px 0;
            }
            .nav-links a {
                display: block;
                padding: 10px;
            }
            .burger {
                display: block;
            }
            .nav-active {
                display: flex;
            }
        }
.info-box-container {
    display: flex;
    justify-content: space-between; /* Even spacing between items */
    gap: 20px; /* Adds spacing between boxes */
    margin-top: 20px; /* Space from the paragraph above */
}

.info-box {
    flex: 1; /* Ensures equal width for all boxes */
    background-color: #f8f8f8; /* Light background */
    padding: 20px;
    text-align: center;
    /*border-radius: 8px; /* Rounded corners */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
    font-size: 1.5em; /* Larger title text */
    margin-bottom: 10px;
}

.info-box p {
    font-size: 1em; /* Smaller description text */
    color: #666;
}

/* Ensure proper layout on smaller screens */
@media (max-width: 768px) {
    .info-box-container {
        flex-direction: column; /* Stack the boxes vertically on small screens */
    }
}

.container_title {
margin-bottom: 10px;
}

.coming-soon-box {
    position: relative; /* Needed for absolute positioning of the label */
}

.coming-soon {
    position: absolute;
    top: 70px;
    left: -20px;
    background: #eb701e;
    color: #262626;
    font-size: 1em;
    font-weight: bold;
    padding: 5px 15px;
    transform: rotate(-45deg);
    transform-origin: left top;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
