/* CSS для исправления навигации на страницах техники - классический стиль */

/* ПРИНУДИТЕЛЬНЫЕ СТИЛИ ДЛЯ FEATURES - 3 В РЯД */
.features {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin: 60px 0 !important;
}

.feature {
    background: #f5f5f5 !important;
    padding: 30px !important;
    border-radius: 12px !important;
    border: 1px solid #e0e0e0 !important;
    text-align: center !important;
    margin: 0 !important;
}

.feature h3 {
    font-size: 24px !important;
    margin-bottom: 15px !important;
    color: #000000 !important;
}

.feature p {
    color: #000000 !important;
}

/* Адаптивность для мобилок */
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin: 40px 0 !important;
    }
    
    .feature {
        padding: 20px !important;
    }
    
    .feature h3 {
        font-size: 20px !important;
    }
}
