.locations-page {
    padding: 30px 0;
}

.page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #444;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

/* Стили для топ городов */
.top-cities-section {
    margin-bottom: 50px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.top-city {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.top-city:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white;
    text-decoration: none;
}

/* Стили для алфавитного списка */
.all-cities-section {
    margin-bottom: 30px;
}

.cities-alphabet {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.letter-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.letter-title {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
}

.cities-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.city-link {
    color: #495057;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.city-link:hover {
    background-color: #007bff;
    color: white;
    text-decoration: none;
    transform: translateX(5px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-alphabet {
        grid-template-columns: 1fr;
    }
    
    .letter-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .locations-page {
        padding: 15px 0;
    }
    
    .page-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .top-city {
        padding: 15px;
        font-size: 1rem;
    }
}