
body { margin: 0; font-family: Arial, sans-serif; line-height: 1.6; color: #222; }
/* NAV */
.navbar { display: flex; justify-content: space-between; align-items: center; background: #024b30; padding: 15px 40px; color: #fff; }
.navbar .logo { display:flex; align-items:center; }
.nav-links { display: flex; gap: 20px; list-style: none; padding:0; margin:0; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 500; }
/* HERO */
.hero { position: relative; text-align: center; padding: 120px 20px; color: #fff; background: url('hero.jpg') no-repeat center/cover; }
.hero::after { content:''; position:absolute; inset:0; background: rgba(0,0,0,0.35); }
.hero > * { position: relative; z-index: 1; }
.cta-btn { display: inline-block; margin-top: 20px; padding: 12px 25px; background: #faaf40; color: #fff; border-radius: 5px; text-decoration: none; font-weight: bold; }
/* SECTIONS */
.section { padding: 70px 20px; max-width: 1000px; margin: auto; }
.section.alt { background: #f1f1f1; }
h2 { margin-bottom: 20px; color: #024b30; }
.event-card, .leader-card { background: #fff; padding: 20px; border-left: 5px solid #024b30; margin-bottom: 20px; }
.leaders { display: flex; gap: 20px; flex-wrap: wrap; }
/* BUSINESSES GRID */
.biz-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.biz-card { background: #fff; padding: 20px; border: 1px solid #e5e5e5; border-radius: 8px; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.biz-card h3 { margin-top: 0; color: #024b30; }
.biz-type { font-weight: 600; color: #444; }
.biz-meta { color: #555; font-size: 0.95rem; }
.small { font-size: 0.9rem; color: #555; }
footer { text-align: center; padding: 30px; background: #024b30; color: #fff; }
