/* about.css – стили только для страницы "О нас" */
.feature-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
    transition: 0.2s;
}
.feature-card:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}
.feature-icon {
    font-size: 35px;
    background: var(--dark-blue);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    color: white;
}
.feature-text h3 {
    margin: 0 0 5px 0;
    color: var(--dark-blue);
    font-size: 20px;
}
.feature-text p {
    margin: 0;
    font-size: 16px;
}
.highlight {
    color: #e67e22;
    font-weight: bold;
    font-size: 18px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}
.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
}
.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: var(--dark-blue);
}
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
}