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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

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

/* Navigation */
.navbar {
    background: #34495e;
    padding: 1rem 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-link:hover {
    background: #3498db;
}

/* Sections */
.intro-section, .cities-section, .info-section {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.intro-section h2, .cities-section h2, .info-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.feature h3 {
    color: #3498db;
    margin-bottom: 0.5rem;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.city-card {
    background: #3498db;
    color: white;
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
}

.city-card:hover {
    background: #2980b9;
    transform: translateY(-5px);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    background: #ecf0f1;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Forms */
.form-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #bdc3c7;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #3498db;
}

.btn {
    background: #3498db;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn:hover {
    background: #2980b9;
}

.btn-success {
    background: #27ae60;
}

.btn-success:hover {
    background: #219a52;
}

.btn-danger {
    background: #e74c3c;
}

.btn-danger:hover {
    background: #c0392b;
}

/* Evakuator Cards */
.evakuators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.evak-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.evak-card.featured {
    border-left-color: #f39c12;
    background: #fff9e6;
}

.evak-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.evak-card .phone {
    font-size: 1.2rem;
    font-weight: bold;
    color: #27ae60;
    margin: 0.5rem 0;
}

.evak-card .price {
    color: #e67e22;
    font-weight: bold;
}

.evak-card .capacity {
    color: #7f8c8d;
}

/* Admin Panel */
.admin-panel {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.admin-sidebar {
    background: #2c3e50;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
}

.admin-sidebar a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
    border-radius: 5px;
    transition: background 0.3s;
}

.admin-sidebar a:hover, .admin-sidebar a.active {
    background: #3498db;
}

.admin-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.table th, .table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #bdc3c7;
}

.table th {
    background: #34495e;
    color: white;
}

.table tr:hover {
    background: #f8f9fa;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .navbar {
        text-align: center;
    }
    
    .nav-link {
        display: inline-block;
        margin: 0.25rem;
    }
    
    .admin-panel {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .features, .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .intro-section, .cities-section, .info-section {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .form-container {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .popular-grid {
        grid-template-columns: 1fr;
    }
    
    .popular-card {
        padding: 1rem;
    }
    
    .popular-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}