:root {
  --red: #b31b1b;
  --blue: #0072CE;
  --navy: #0b2a66;
  --bg: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --radius: 12px;
  --max-width: 960px;
  --font: "Inter", "Roboto", system-ui, sans-serif;
}

/* Base reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  line-height: 1.6;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(90deg, var(--blue), var(--red));
  color: white;
  padding: 60px 0;
  text-align: left;
}
.hero-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.logo {
  width: 110px;
  height: 110px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
}
.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.motto {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e2e8f0;
}
.sub {
  color: #f1f5f9;
  margin-bottom: 20px;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.btn {
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.95rem;
}
.btn.primary {
  background: var(--red);
  color: #fff;
}
.btn.outline {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  background: transparent;
}
.socials a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.socials a:hover { text-decoration: underline; }

/* Sections */
main section {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  margin-bottom: 20px;
}
main h2 {
  color: var(--navy);
  margin-bottom: 10px;
}
main p, main li {
  color: var(--text);
}
main a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
main a:hover { text-decoration: underline; }

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 720px) {
  .hero {
    text-align: center;
  }
  .hero-inner {
    flex-direction: column;
  }
  .logo {
    width: 90px;
    height: 90px;
  }
}
