body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    background-color: #fff;
}

.hero {
    background-color: #b86b3c; /* Rusk color */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.hero .overlay h1 {
    font-size: 2rem;
    margin: 0;
}

.city-skyline {
    background: url('https://via.placeholder.com/800x100/e2c9b0/ffffff?text=City+Silhouette') no-repeat center bottom;
    background-size: cover;
    height: 100px;
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0.3;
}

.sections {
    display: flex;
    flex-direction: column;
}

section {
    display: flex;
    flex-wrap: wrap;
}

.section-box {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.section-box.dark {
    background-color: #f5eee6;
    color: #222;
}

.section-box.medium {
    background-color: #f9f6f2;
    color: #222;
}

.section-box.light {
    background-color: #fff;
    color: #333;
    border: 1px solid #eee;
}

.section-box h2 {
    margin-top: 0;
}

.section-box ul {
    list-style: none;
    padding: 0;
}

.section-box ul li {
    margin: 10px 0;
}

.icons-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

blockquote {
    font-style: italic;
    border-left: 4px solid #b86b3c;
    padding-left: 10px;
    margin: 10px 0;
    color: #444;
    background: #faf6f2;
}

blockquote footer {
    margin-top: 5px;
    font-style: normal;
    color: #b86b3c;
}

.cta {
    background-color: #b86b3c;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}

.cta:hover {
    background-color: #a05a2c;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5rem;
    }
}
