* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #f5f3ee;
    color: #202020;
    font-family: Arial, sans-serif;
    line-height: 1.7;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #1e2b26;
}

.logo {
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

.place-page {
    width: 88%;
    max-width: 1000px;
    margin: 40px auto;
}

.back-link {
    display: inline-block;
    margin-bottom: 25px;
    color: #2468b4;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

article {
    background-color: white;
    padding: 40px;
}

.place-header {
    margin-bottom: 30px;
}

.region {
    margin: 0 0 10px;
    color: #9b4e36;
    font-size: 15px;
    font-weight: bold;
}

h1 {
    margin: 0 0 15px;
    font-size: 42px;
    line-height: 1.2;
}

.short-description {
    margin: 0;
    color: #555;
    font-size: 19px;
}

.image-block {
    margin: 30px 0;
}

.place-image {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-block figcaption {
    margin-top: 8px;
    color: #666;
    font-size: 14px;
}

.image-block a,
.sources a {
    color: #2468b4;
}

section {
    margin-top: 35px;
}

section h2 {
    margin: 0 0 12px;
    font-size: 27px;
}

section p {
    margin: 0;
    font-size: 17px;
}

.sources ul {
    padding-left: 22px;
}

.sources li {
    margin-bottom: 8px;
}

.main-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding: 25px 8%;
    background-color: #1e2b26;
    color: white;
}

.main-footer p {
    margin: 0;
}

.main-footer a {
    color: white;
    text-decoration: none;
}

.main-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .main-header {
        padding: 18px 5%;
    }

    nav {
        gap: 12px;
    }

    .place-page {
        width: 92%;
        margin: 25px auto;
    }

    article {
        padding: 22px;
    }

    h1 {
        font-size: 32px;
    }

    .place-image {
        height: 300px;
    }

    .main-footer {
        padding: 22px 5%;
    }
}