* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #1a1a1a; background: #f8f9fa; }
header { background: #002b5c; color: white; text-align: center; padding: 2rem 1rem; }
header h1 { font-size: 2rem; margin-bottom: 0.5rem; }
header p { font-size: 1.1rem; opacity: 0.9; }
main { max-width: 900px; margin: 2rem auto; padding: 0 1rem; }
section { margin-bottom: 3rem; }
.hero { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.hero img { max-width: 250px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.hero-text { flex: 1; }
.hero-text h2 { font-size: 1.8rem; color: #002b5c; margin-bottom: 1rem; }
.hero-text p { font-size: 1rem; margin-bottom: 1rem; }
a.button { display: inline-block; background: #002b5c; color: white; padding: 0.75rem 1.25rem; border-radius: 5px; text-decoration: none; font-weight: 600; }
a.button:hover { background: #00408a; }
.about { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.about img { width: 180px; border-radius: 0; box-shadow: 0 3px 6px rgba(0,0,0,0.15); }
footer { background: #002b5c; color: white; text-align: center; padding: 1.5rem; font-size: 0.9rem; }
@media (max-width: 700px) {
  .hero, .about { flex-direction: column; text-align: center; }
}