body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    margin: auto;
}

header {
    text-align: center;
    background-color: #03297e;
    color: white;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

header h1 {
    font-size: 3rem;
    margin: 0;
}

header h2 {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #f4d35e;
}

header img.city-flag {
    position: absolute;
    top: 10px;
    right: 10px;
    max-width: 187.5px;
    max-height: 125px;
    height: auto;
    width: auto;
    object-fit: contain;
}

nav {
    position: relative;
}

nav ul {
    display: flex;
    justify-content: center;
    background-color: #ff5757;
    padding: 0;
    list-style-type: none;
}

nav li {
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    padding: 10px 20px;
    color: white;
    background-color: #007bff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        display: none;
        background-color: #ff5757;
    }

    nav ul li {
        text-align: center;
        margin: 10px 0;
    }

    nav ul.active {
        display: flex;
    }

    .menu-btn {
        display: block;
        background-color: #007bff;
        color: white;
        padding: 10px;
        text-align: center;
        cursor: pointer;
        border-radius: 5px;
        margin: 10px auto;
    }

    .menu-btn {
        display: block;
    }
}

.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left-column img {
    position: relative;
    top: 10px;
    left: 5px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

img:not(.city-flag) {
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:not(.city-flag):hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

#post-image {
    width: 50%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

section {
    flex: 2;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section h1 {
    font-size: 2rem;
    color: #03297e;
}

section table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

aside {
    flex: 1;
    background-color: #03297e;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    float: right;
    width: 30%;
}

aside h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

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

aside ul li {
    margin-bottom: 10px;
}

.landscape-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#content-container {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

footer {
    background-color: #03297e;
    color: white;
    text-align: center;
    padding: 10px;
    overflow: hidden;
}

footer a {
    color: #ffdd57;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

form {
    width: 80%;
    margin: 20px auto;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #03297e;
    color: white;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #f0f0f0;
    color: #333;
}

button[type="submit"] {
    background-color: #ff5757;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #e64d4d;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
    }

    nav li {
        margin-bottom: 10px;
    }

    header h1 {
        font-size: 2.5rem;
    }

    section h1 {
        font-size: 1.8rem;
    }

    header img.city-flag {
        max-width: 80px;
    }

    aside {
        float: none;
        margin: 20px 0;
        height: auto;
        width: auto;
        object-fit: contain;
    }

    img {
        height: auto;
        width: auto;
        object-fit: contain;
    }
}
