const items = [ { title: "Expert Instructors", desc: "Learn from licensed attorneys and certified estate planners", icon: "🧑‍🏫" }, { title: "Live & On-Demand", desc: "Join live sessions or watch recordings at your convenience", icon: "🎥" }, { title: "Certificates", desc: "Earn completion certificates for premium courses", icon: "🏅" }, { title: "Secure Platform", desc: "Your data and payments are protected with enterprise security", icon: "🔒" }, ]; export default function WhyWithUs() { return (

🌟 Why Learn With Us?

Expert guidance, practical knowledge, and actionable insights to protect your legacy

{items.map((it, idx) => (
{/* Subtle background gradient */}
{/* Top border accent */}
{/* Icon */}
{it.icon}
{/* Title */}

{it.title}

{/* Description */}

{it.desc}

{/* Bottom accent bar */}
Learn More →
))}
); }