
body {
      margin: 0;
      font-family: 'Inter', sans-serif;
    }
    header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: white;

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}



    header img {
      height: 40px;
    }
       /* Page content starts below header */
   
.content {
  padding-top: 100px; /* Adjust as needed */
  box-sizing: border-box;
}
    nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #000;
      font-weight: 500;
    }
    .hero {
      background: url('../Images/abstract_hero.jpg') no-repeat center center/cover;
      color: white;
      padding: 120px 40px 80px;
      font-size: 2.5rem;
      font-weight: 700;
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 600px;
    }
    .section {
      display: flex;
      flex-wrap: wrap;
      padding: 60px 40px;
      background-color: #003748;
      color: white;
    }
    .section-text {
      flex: 1;
      padding-right: 40px;
    }
    .section-icons {
      flex: 1;
    }
    .icon-block {
      margin-bottom: 30px;
    }
    .icon-block h4 {
      color: #f06565;
      margin-bottom: 5px;
    }
    .injectable {
      background: #e5eef2;
      padding: 60px 40px;
      text-align: center;
    }
    .injectable h3 {
      color: #cc3f3f;
      margin-bottom: 20px;
    }
    .team {
      background: #003748;
      color: white;
      padding: 60px 40px;
      text-align: center;
    }
    .team h2 {
      margin-bottom: 40px;
    }
    .team-member {
      display: inline-block;
      width: 200px;
      margin: 20px;
    }
    .team-member img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
    }
    .team-member h4 {
      color: #4fc3f7;
      margin: 10px 0 5px;
    }
    .mission {
      background: #f7f7f7;
      text-align: center;
      padding: 60px 40px;
    }
    .mission h3 {
      color: #cc3f3f;
    }
    .mission p {
      margin-bottom: 30px;
    }
    .button {
      padding: 12px 24px;
      background: #00a2c6;
      color: white;
      text-decoration: none;
      font-weight: bold;
      border-radius: 4px;
    }
    .support-logos {
      margin-top: 40px;
    }
    .support-logos img {
      margin: 0 20px;
      height: 40px;
    }
    footer {
      background: #003748;
      color: white;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
    }
