body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #f1f1f1;
    margin: 0;
    padding: 0;
    position: relative;
}

.container, .section-container {
    text-align: center;
    margin-top: 5%;
    position: relative;
    z-index: 1;
}

.logo, .logo-map {
    width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 10px 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 10px 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
}

a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #45a049;
}

.background-image, .background-map {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 0;
}

.background-image img, .background-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#map {
    position: relative;
    width: 600px;
    height: 400px;
    margin: 20px auto;
    border: 2px solid #4CAF50;
    box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.5);
}

.map-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.8;
}

.map-point {
    position: absolute;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.map-point:hover {
    background-color: rgba(255, 0, 0, 1);
    transform: scale(1.1);
}
