/* НОВЫЙ БЛОК - НАПРАВЛЕНИЕ ДЕЯТЕЛЬНОСТИ */
.activity-direction-block {
    background-color: #f8f9fa;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.activity-direction-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.activity-direction-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #212529;
    margin: 0 auto 20px;
    line-height: 1.2;
}

.activity-direction-text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.activity-direction-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.activity-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s;
    font-size: 16px;
    color: #2196f3;
    font-weight: 600;
    text-decoration: none;
    margin-right: 8px;
}

.activity-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: all 0.3s;
}

.activity-link:hover {
    color: #0056b3;
}

.activity-link:hover::after {
    width: 100%;
}

.activity-statistics {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1100px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    min-width: 250px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e9ecef;
    flex: 1;
    max-width: 280px;
}

.stat-card-wide {
    flex: 1.5;
    max-width: 420px;
    min-width: 350px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #d2d8e0;
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 500;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #212529;
    line-height: 1.1;
}

/* Адаптивность */
@media (max-width: 992px) {
    .activity-statistics {
        gap: 20px;
    }
    
    .stat-card {
        min-width: 200px;
        padding: 25px 20px;
        max-width: 220px;
    }
    
    .stat-card-wide {
        min-width: 280px;
        max-width: 320px;
    }
    
    .stat-value {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .activity-direction-content h2 {
        font-size: 30px;
    }
    
    .activity-direction-text {
        font-size: 16px;
    }
    
    .activity-statistics {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-width: 100%;
    }
    
    .stat-card,
    .stat-card-wide {
        width: 100%;
        max-width: 400px;
        min-width: auto;
        flex: none;
    }
    
    .stat-value {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .activity-direction-content h2 {
        font-size: 26px;
    }
    
    .activity-direction-text {
        font-size: 15px;
    }
    
    .activity-direction-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .activity-statistics {
        gap: 15px;
    }
    
    .stat-card,
    .stat-card-wide {
        max-width: 80%;
        padding: 15px 10px;
    }
    
    .stat-value {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}