body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

main.city-page {
    max-width: 880px;
    margin: 0 auto;
    padding: 160px 24px 80px;
}

header,
section,
article {
    margin-bottom: 48px;
}

h1 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
    /*color: #2a2a2e;*/
    margin-top: 1.8rem;
    border-left: 4px solid #c69c6d;
    padding-left: 14px;
}

h3, h4, h5, h6 {
    font-weight: 600;
    /*color: #333;*/
    margin-top: 1.5rem;
}

ul {
    padding-left: 22px;
}

ul li {
    margin-bottom: 6px;
    list-style-type: disc;
    font-weight: 500;
}

h1 {
    color: var(--primary-gold);
}

.city-name {
    text-shadow: 2px 2px 10px var(--light-gold);
    color: var(--text-gold);
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-muted-more);
}

/*.hero-image,*/
/*.section-image {*/
/*    width: 100%;*/
/*    height: auto;*/
/*    max-height: 460px;*/
/*    border-radius: 16px;*/
/*    object-fit: cover;*/
/*    margin-top: 1.2rem;*/
/*    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);*/
/*}*/

.cta-block {
    background-color: rgba(198, 156, 109, 0.07);
    padding: 28px 20px;
    border-radius: 20px;
    text-align: center;
}

.cta-button {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background-color: rgba(255, 202, 137, 0.3);
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 1000px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}

@media (max-width: 480px) {
    .cta-button {
        bottom: 60px;
    }

}

.cta-button:hover {
    background-color: rgba(252, 189, 88, 0.39);
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 10px 30px rgba(198, 156, 109, 0.4);
}

footer {
    text-align: center;
    font-size: 0.9rem;
    /*color: #666;*/
    border-top: 1px solid #eee;
    padding-top: 24px;
}