* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: 'Inter', sans-serif;
    background-color: #fcfcfc;
    color: #102770;
    line-height: 1.6;
  }
  header {
    background-color: #0358e7;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
  }
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  header p {
    font-size: 1.2rem;
    font-weight: 300;
  }
  nav {
    margin-top: 1rem;
  }
  nav a {
    margin: 0 1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
  }
  .section {
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: auto;
  }
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  .card:hover {
    transform: translateY(-5px);
  }
  .card h3 {
    margin-bottom: 0.5rem;
    color: #0747bf;
  }
  .card p {
    color: #0b3797;
  }
  footer {
    background-color: #0b3797;
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
  }
  