* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a2e;
  background: #fafbfc;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 720px; margin: 0 auto; padding: 48px 24px 80px; }
.site-header { background: #fff; border-bottom: 1px solid #e8e8ee; padding: 16px 24px; position: sticky; top: 0; z-index: 10; }
.site-header .inner { max-width: 720px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.site-header .logo { font-weight: 700; font-size: 18px; color: #5A9BD8; text-decoration: none; }
.site-header nav a { margin-left: 24px; color: #555; text-decoration: none; font-size: 14px; font-weight: 500; }
.site-header nav a:hover { color: #5A9BD8; }
.hero { text-align: center; padding: 80px 24px 60px; }
.hero h1 {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, #5A9BD8, #B39DDB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.hero p { font-size: 18px; color: #666; max-width: 500px; margin: 0 auto; }
h1.page-title { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.effective-date { color: #888; font-size: 14px; margin-bottom: 36px; }
h2 { font-size: 20px; font-weight: 700; margin-top: 36px; margin-bottom: 12px; color: #1a1a2e; }
p, li { font-size: 15px; color: #444; margin-bottom: 12px; }
ul { padding-left: 24px; margin-bottom: 16px; }
li { margin-bottom: 6px; }
a { color: #5A9BD8; }
.footer { text-align: center; padding: 32px 24px; color: #aaa; font-size: 13px; border-top: 1px solid #e8e8ee; margin-top: 60px; }
.footer-links { margin-bottom: 12px; }
.footer-links a { margin: 0 12px; color: #888; text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: #5A9BD8; }

/* Sections */
.section { padding: 60px 24px; }
.section-alt { background: #f3f4f8; }
.section-title { text-align: center; font-size: 28px; font-weight: 800; margin-top: 0; margin-bottom: 32px; }

/* Project card */
.project-card { display: flex; gap: 24px; background: #fff; border: 1px solid #e8e8ee; border-radius: 16px; padding: 32px; align-items: flex-start; }
.project-icon { font-size: 48px; flex-shrink: 0; }
.project-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 4px; color: #1a1a2e; }
.project-tagline { font-weight: 500; color: #5A9BD8; margin-bottom: 12px; }
.project-links { margin-top: 16px; }
.btn { display: inline-block; padding: 10px 20px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 14px; }
.btn-primary { background: linear-gradient(135deg, #5A9BD8, #B39DDB); color: #fff; }
.btn-primary:hover { opacity: 0.9; color: #fff; }

/* Support grid */
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 24px; }
.support-item { background: #fff; border: 1px solid #e8e8ee; border-radius: 12px; padding: 24px; }
.section-alt .support-item { background: #fff; }
.support-icon { font-size: 28px; display: block; margin-bottom: 8px; }
.support-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: #1a1a2e; }
.support-item p { font-size: 14px; color: #555; margin-bottom: 0; }

@media (max-width: 600px) {
  .project-card { flex-direction: column; align-items: center; text-align: center; }
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 24px; }
}
