* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Segoe UI','Malgun Gothic',sans-serif; background:#f4f6fb; }
.navbar { background:#1a237e; color:white; padding:14px 40px; display:flex; justify-content:space-between; align-items:center; }
.logo { font-size:20px; font-weight:800; }
.logo span { color:#82b1ff; }
.nav-links { display:flex; gap:12px; }
.btn { border:none; border-radius:8px; padding:9px 20px; font-size:13px; font-weight:700; cursor:pointer; }
.btn-outline { background:transparent; border:2px solid white; color:white; }
.btn-accent { background:#82b1ff; color:#1a237e; }
.hero { background:linear-gradient(135deg,#1a237e,#1565c0); color:white; padding:90px 24px; text-align:center; }
.hero h1 { font-size:40px; font-weight:800; margin-bottom:16px; line-height:1.3; }
.hero h1 span { color:#82b1ff; }
.hero p { font-size:16px; opacity:.85; max-width:560px; margin:0 auto 36px; line-height:1.8; }
.hero-btns { display:flex; gap:14px; justify-content:center; }
.hero-btn-p { background:white; color:#1a237e; border-radius:10px; padding:13px 32px; font-weight:800; font-size:15px; cursor:pointer; text-decoration:none; }
.hero-btn-s { border:2px solid white; color:white; border-radius:10px; padding:13px 32px; font-size:15px; cursor:pointer; text-decoration:none; }
.features { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:960px; margin:60px auto; padding:0 24px; }
.feat { background:white; border-radius:14px; padding:28px 24px; text-align:center; box-shadow:0 2px 10px rgba(0,0,0,.07); border-top:4px solid #1565c0; }
.feat.g { border-top-color:#2e7d32; }
.feat.p { border-top-color:#6a1b9a; }
.feat .icon { font-size:32px; margin-bottom:12px; }
.feat h3 { font-size:16px; font-weight:700; color:#1a237e; margin-bottom:8px; }
.feat p { font-size:13px; color:#666; line-height:1.7; }
