:root { --primary: #f59e0b; --text: #1f2937; --light: #f9fafb; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--light); color: var(--text); }
header { background: var(--primary); color: white; padding: 1.5rem 2rem; sticky: top; }
main { max-width: 1200px; margin: 0 auto; }
section { padding: 4rem 2rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--primary); }
.hero { background: linear-gradient(135deg, var(--primary), #f97316); color: white; text-align: center; padding: 6rem 2rem; }
.hero h2, .hero p { color: white; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.card { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.card h3 { color: var(--primary); margin-bottom: 0.5rem; }
