.features-section {
    margin-top: 30px;
    padding: 20px 15px;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border-radius: 14px;
    text-align: center;
    border: 2px solid #bfdbfe;
}
.features-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}
.feature-card {
    background: white;
    padding: 15px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.15);
}
.feature-icon {
    font-size: 36px;
    margin-bottom: 8px;
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.feature-text {
    font-size: 11px;
    color: #475569;
    font-weight: 600;
}
