body { margin: 0; font-family: "Inter", sans-serif; background: #fafafa; color: #222; } /* ---------- Layout ---------- */ .container { width: 92%; max-width: 1200px; margin: auto; } header { background: white; border-bottom: 1px solid #eee; padding: 14px 0; } .nav { display: flex; align-items: center; justify-content: space-between; } .brand img { height: 58px; } .navlinks a { margin-left: 24px; text-decoration: none; font-weight: 500; color: #222; } .navlinks a.active { color: #0072b8; } /* ---------- HERO ----------- */ .hero { padding: 80px 0 60px; background: white; } .hero-flex { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; } .hero-left { flex: 1 1 420px; } .hero-logo { width: 160px; display: block; } .hero-tagline { font-size: 20px; margin: 20px 0; color: #444; } .hero-actions { display: flex; gap: 16px; margin-top: 18px; } .btn { padding: 12px 22px; border-radius: 6px; background: #ddd; text-decoration: none; color: #000; font-weight: 600; } .btn.primary { background: #0072b8; color: white; } .hero-small { margin-top: 16px; font-size: 14px; color: #777; } .hero-right { flex: 1 1 420px; min-height: 260px; } .hero-image { width: 100%; height: 260px; background: radial-gradient(circle, #e5f3ff, #f4fbff); border-radius: 12px; } /* ---------- FEATURES ---------- */ .section h2 { text-align: center; margin-bottom: 30px; font-size: 32px; } .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; } .feature { background: white; border: 1px solid #eee; border-radius: 12px; padding: 20px; text-align: center; } /* ---------- FOOTER ---------- */ .footer { background: #111; color: #ddd; padding: 40px 0; margin-top: 40px; } .footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; } .footer-title { font-weight: 900; font-size: 18px; } .footer-links a { display: block; margin-bottom: 8px; color: #ddd; text-decoration: none; }