body{font-family:Inter,Arial,sans-serif;margin:0;background:#f8fafc;color:#1e293b;line-height:1.6}
nav{display:flex;justify-content:space-between;align-items:center;padding:20px 8%}
.hero{background:#0f172a;color:white;padding-bottom:80px}
.hero-small{padding-bottom:30px}
.brand{font-size:28px;font-weight:bold}
.navlinks a{color:white;margin:10px;text-decoration:none}
.navlinks a:hover{text-decoration:underline}
.hero-content,section{max-width:1000px;margin:auto;padding:50px 8%}
.hero h1{font-size:3rem;margin-bottom:10px}
.hero h2{font-size:1.3rem;font-weight:600;opacity:.95}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px}
.card{background:white;padding:25px;border-radius:12px;box-shadow:0 5px 15px #ddd}
.card h3,.card h2{margin-top:0}
.button{background:#14b8a6;color:white;padding:12px 20px;border-radius:8px;text-decoration:none;display:inline-block}
.button:hover{background:#0f9d8f}
.button-row{display:flex;gap:12px;flex-wrap:wrap}
.button-secondary{background:transparent;border:1px solid #9cc7ff;color:#e4efff}
.button-secondary:hover{background:#122543}
.timeline{display:grid;gap:20px}
.meta{font-weight:600;color:#0f172a;margin-top:-5px}
.list-clean{padding-left:20px}
footer{text-align:center;background:#0f172a;color:white;padding:25px}

@media (max-width:700px){
	.hero h1{font-size:2.2rem}
	nav{flex-direction:column;align-items:flex-start}
	.navlinks{display:flex;flex-wrap:wrap}
	.navlinks a{margin:6px 12px 6px 0}
}