* {
    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 */
.hero {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1515542622106-78bda8ba0e5b?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;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-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;
}

.main-article {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

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;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th {
    background: #9c0d63;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tr:hover {
    background-color: #f0f0f0;
}

.city-name {
    font-weight: 600;
    color: #9c0d63;
}

.rating {
    color: #ffc107;
    font-weight: 600;
}

/* City Cards Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.city-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.city-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.city-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.city-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1rem;
}

.city-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.city-card-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0.3rem 0 0;
}

.city-card-content {
    padding: 1.5rem;
}

.city-card-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #9c0d63;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
}

.city-card-button {
    display: block;
    width: 100%;
    background: #e10a5a;
    color: white;
    text-align: center;
    padding: 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s;
}

.city-card-button:hover {
    background: #c50950;
}

/* Info Boxes */
.info-box {
    background: #f0f7ff;
    border-left: 4px solid #2196F3;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.tip-box {
    background: #fff8e1;
    border-left: 4px solid #ffb300;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

/* CTA Section */
.cta-section {
    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-section 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);
}

/* 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;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .main-article {
        padding: 1.5rem;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 1.5rem;
    }
}

/* City Tags */
.city-tag {
    display: inline-block;
    background: #e10a5a;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.city-tag.business {
    background: #2196F3;
}

.city-tag.students {
    background: #4CAF50;
}

.city-tag.culture {
    background: #9C27B0;
}

.city-tag.romantic {
    background: #FF9800;
}

/* Map Visualization */
.map-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.city-map {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.map-city {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #e10a5a;
    text-align: center;
    transition: all 0.3s;
}

.map-city:hover {
    background: #e10a5a;
    color: white;
    transform: scale(1.05);
}

.map-city a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}
