/* Robot Why Choose Section Styles */
.robot-why-choose-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.robot-stat-card {
    background: #f8f9fa;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.robot-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.stat-icon {
    color: var(--nachi-primary, #a01d22);
}

.stat-value {
    color: #333;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-choose-robot h3 {
    color: #333;
    font-weight: 700;
    font-size: 1.75rem;
}

.feature-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--nachi-primary, #a01d22);
}

.feature-icon {
    color: var(--nachi-primary, #a01d22);
}

.feature-title {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .robot-stat-card,
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .why-choose-robot h3 {
        font-size: 1.5rem;
    }
}

