* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #e10a5a 0%, #9c0d63 100%);
    color: white;
    padding: 1.5rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav ul li a:hover {
    opacity: 0.8;
}

/* Hero Section */
.city-hero {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1552832230-c0197dd311b5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 15px 15px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.city-torino {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1699449566081-4e3282c7c0ed?q=80&w=1032&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 15px 15px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.city-roma {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1552832230-c0197dd311b5?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=60');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 15px 15px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.city-napoli {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1599682715474-361182378581?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 15px 15px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.city-milano {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1667778880347-3ecdea4ebe20?q=80&w=737&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 15px 15px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.city-firenze {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1601195576601-346d58e024c0?q=80&w=897&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 15px 15px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.city-bologna {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1629400915789-4507de5819ab?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 15px 15px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.city-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.city-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    background: #f8f9fa;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #e10a5a;
}

/* Main Content */
main {
    padding-bottom: 3rem;
}

.article-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

@media (max-width: 992px) {
    .article-content {
        grid-template-columns: 1fr;
    }
}

/* Main Article */
.main-article {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

h2 {
    color: #9c0d63;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.7rem;
    margin: 2.5rem 0 1.5rem;
    font-size: 1.8rem;
}

h2:first-child {
    margin-top: 0;
}

h3 {
    color: #e10a5a;
    margin: 1.8rem 0 1rem;
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.8rem;
}

/* City Stats */
.city-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #e10a5a;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #9c0d63;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* District Cards */
.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.district-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: transform 0.3s, box-shadow 0.3s;
}

.district-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.district-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.district-content {
    padding: 1.5rem;
}

.district-content h3 {
    margin-top: 0;
}

/* Sidebar */
.sidebar {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 20px;
}

.sidebar h3 {
    margin-top: 0;
}

/* CTA Section */
.cta-box {
    background: linear-gradient(135deg, #f8f0ff 0%, #e6f7ff 100%);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
    border: 2px solid #e10a5a;
}

.cta-box h3 {
    color: #9c0d63;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.cta-button {
    display: inline-block;
    background: #e10a5a;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #c50950;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(225,10,90,0.3);
}

/* Info Box */
.info-box {
    background: #f0f7ff;
    border-left: 4px solid #2196F3;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #e10a5a;
    margin-bottom: 1.2rem;
}

.footer-section ul {
    list-style: none;
    margin-left: 0;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #e10a5a;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav ul li {
        margin: 0.5rem;
    }

    .city-title {
        font-size: 2.5rem;
    }

    .main-article, .sidebar {
        padding: 1.5rem;
    }

    .cta-box {
        padding: 1.5rem;
    }
}
