
section.city_weater {
    padding: 70px 0;
    background: #f7f7f7;
}

.weather-container {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     background: #fff;
}

/* Header Section */
.header-section {
    text-align: center;
    padding: 40px;
    position: relative;
    padding-bottom: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.main-title {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.main-description {
    margin: 0;
}

/* Weather Grid */
.weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    padding: 40px;
}

/* Weather Cards */
.weather-card {
    background: white;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.weather-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: height 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.weather-card:hover::before {
    height: 6px;
}

/* Seasonal Card Variations */
.summer-card::before {
    background: var(--accent);
}

.spring-card::before {
    background: var(--accent);
}

.winter-card::before {
    background: var(--accent);
}

.severe-card::before {
    background: var(--accent);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.summer-card .icon-container {
    background: var(--accent);
}

.spring-card .icon-container {
    background: var(--accent);
}

.winter-card .icon-container {
    background: var(--accent);
}

.severe-card .icon-container {
     background: var(--accent);
}

.season-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
}

.temperature {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
margin-bottom: 0;
}
.safety-section {
    margin: 14px 0;
}
section.all_dv.cities_restoration {
    padding-bottom: 70px;
}
/* Card Content */
/*.card-content {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 20px;*/
/*}*/

.challenges-section h4,
.safety-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.challenges-section h4 i {
    color: #f56565;
}

.safety-section h4 i {
    color: #48bb78;
}

.challenges-list,
.safety-list {
    list-style: none;
    margin: 0;
}

.challenges-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.challenges-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.safety-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.safety-list li i {
    color: #48bb78;
    margin-top: 2px;
    flex-shrink: 0;
}

.response-section {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid var(--accent);
}

.response-section h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.response-section p {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.5;
margin-bottom: 0;
}

/* Monitoring Section */
.monitoring-section {
    background: var(--heading-color);
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 0 0 30px 30px;
}
.monitoring-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.monitoring-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.8;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    display: flex
;
    align-items: center;
    justify-content: center;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .weather-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .header-section {
        padding: 40px 20px 30px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .weather-card {
        padding: 20px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .monitoring-section {
        padding: 40px 20px;
    }
    
    .monitoring-content h2 {
        font-size: 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    section.city_weater {
    padding: 40px 0;
}
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    
    .icon-container {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

