/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    color: #333;
}

header {
    background-color: #3498db;
    color: white;
    text-align: center;
    padding: 1em 0;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
}

header p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

nav {
    text-align: center;
    background-color: #3498db;
    padding: 10px 0;
}

nav a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #2980b9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.content-text {
    flex: 1;
    padding-right: 20px;
}

.content-text h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.content-text p {
    line-height: 1.6;
}

.photo {
    flex: 1;
    max-width: 100%;
    height: auto;
}

.map {
    width: 100%;
    height: 400px;
    border: none;
    margin-top: 20px;
}

footer {
    background-color: #3498db;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    width: 100%;
    bottom: 0;
}

@media (max-width: 768px) {
    nav {
        display: block;
        margin-bottom: 10px;
    }
    nav a {
        display: block;
        margin-bottom: 5px;
    }
    .content {
        flex-direction: column-reverse;
    }
    .content-text {
        padding: 0;
        text-align: center;
    }
    .photo {
        margin-top: 20px;
    }
}
