+ {/* Security Standards */}
+
+
Security Standards
+
+ {securityStandards.map(cert => (
+
+ ))}
+
+
+
+ {/* Regulatory & Legal */}
+
+
Regulatory & Legal
+
+ {regulatoryLegal.map(cert => (
+
+ ))}
+
+
+
+ {/* Industry-Specific */}
+
+
Industry-Specific
+
+ {industrySpecific.map(cert => (
+
+ ))}
+
+
+
+ {/* International & Government */}
+
+
International & Government
+
+ {internationalGov.map(cert => (
+
+ ))}
+
+
+
+ {/* Custom certifications */}
+ {certifications.length > 0 && (
+
+
Custom Certifications
+
+ {certifications
+ .filter(cert =>
+ ![...securityStandards, ...regulatoryLegal, ...industrySpecific, ...internationalGov].includes(cert)
+ )
+ .map(cert => (
+
+
{cert}
+
+
+ ))}
+
+
+ )}
+