:root {
  color-scheme: light;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background-color: #f5f7fb;
  color: #1f2937;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: #1abbe8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero {
  /* dark overlay + brand gradient */
  background: linear-gradient(135deg, rgba(0,0,0,0.35), rgba(0,0,0,0.15)), linear-gradient(135deg, rgba(0,142,102,0.85), rgba(0,207,155,0.85));
  color: white;
  padding: 3rem 1rem 4rem 1rem;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-logo-section {
  margin-bottom: 2rem;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  width: 140px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

.logo {
  width: 96px;
  max-width: 20%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto 1rem;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0;
  font-weight: 800;
}

.tagline {
  margin: 1.5rem auto 2.5rem;
  max-width: 38rem;
  font-size: 1.1rem;
  opacity: 0.96;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.button.primary {
  background: white;
  color: #005a8e;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.button.primary:hover {
  background: #f0f0f0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transform: translateY(-2px);
}

.section {
  padding: 3rem 1rem;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.section p {
  max-width: 46rem;
  color: #4b5563;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}

.news-list li {
  background: white;
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.news-list li:hover {
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.1);
}

.tag {
  background: #e6f2ff;
  color: #005a8e;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  white-space: nowrap;
  font-weight: 500;
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}

.card {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

.card h3 {
  margin: 0;
  color: #1f2937;
}

.card p {
  color: #4b5563;
}

.card a {
  margin-top: auto;
  display: inline-flex;
  font-weight: 700;
  color: #005a8e;
  transition: color 0.3s ease;
}

.card a:hover {
  color: #0084c7;
  text-decoration: underline;
}

.section-info ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: #4b5563;
}

.section-info ul li {
  margin-bottom: 0.75rem;
}

.section-info a {
  color: #005a8e;
  font-weight: 600;
}

.section-info a:hover {
  color: #0084c7;
}

.footer {
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #475569;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.footer a {
  color: #1a73e8;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #1557b0;
  text-decoration: underline;
}

@media (max-width: 720px) {
  .hero {
    padding: 2rem 1rem 3rem 1rem;
    text-align: center;
  }

  .hero-logo {
    width: 110px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .news-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 2rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }
}
