
    :root { --primary: #0063dc; --secondary: #111; --accent: #00ab6c; }
    body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; }
    a { color: var(--primary); text-decoration: none; }
    header { padding: 2rem; background: #fff; border-bottom: 2px solid #eee; display: flex; justify-content: space-between; align-items: center; }
    .logo { font-weight: bold; font-size: 1.5rem; color: var(--secondary); }
    nav ul { list-style: none; display: flex; gap: 20px; padding: 0; }
    .hero { height: 400px; background: #ddd; background-image: url('/assets/unsplash-image-gPnHi8AmO5k.jpg'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; color: #fff; text-align: center; }
    .hero-overlay { background: rgba(0,0,0,0.6); padding: 2rem; border-radius: 8px; }
    main { max-width: 960px; margin: 2rem auto; padding: 0 1rem; }
    section { margin-bottom: 3rem; }
    footer { background: #131313; color: #fff; padding: 3rem; text-align: center; }
    .footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 1rem; }
    .footer-links a { color: #fff; }
    @media (max-width: 768px) { header { flex-direction: column; } nav ul { flex-direction: column; align-items: center; } }
