* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header h1 a {
    color: white;
    text-decoration: none;
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.search-container {
    margin: 2rem 0;
    text-align: center;
}

#citySearch {
    width: 100%;
    max-width: 500px;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

#citySearch:focus {
    border-color: #667eea;
}

#map {
    height: 500px;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#cityMap {
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.city-list, .info, .lockers-section, .shipping-section, .tips {
    margin: 3rem 0;
}

h2 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

#cityGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.city-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.city-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.city-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.city-card .stats {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
}

.btn, .btn-small {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn:hover, .btn-small:hover {
    background: #5568d3;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.btn-primary {
    background: #764ba2;
}

.btn-primary:hover {
    background: #5e3c81;
}

.locker-item, .shipping-item {
    background: #f9f9f9;
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.locker-item h3, .shipping-item h3 {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.locker-item p, .shipping-item p {
    margin-bottom: 0.5rem;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: #666;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.tips ul {
    list-style: none;
    padding-left: 0;
}

.tips li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.tips li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    #cityGrid {
        grid-template-columns: 1fr;
    }
    
    #map, #cityMap {
        height: 300px;
    }
}