
.hero-features {
    margin: 25px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-feature-badge {
    background: linear-gradient(135deg, #2A5CAA 0%, #4A7CC8 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}
.hero-feature-badge::before {
    content: "✓";
    margin-right: 6px;
    font-weight: bold;
}
@media (max-width: 768px) {
    .hero-features {
        justify-content: center;
    }
}
