
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: #f5f7fa;
  color: #333;
}

header {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

header img {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
}

header h1 {
  font-size: 2.5rem;
  margin: 0.2rem 0;
}

header p {
  font-size: 1.2rem;
  font-style: italic;
}

section {
  max-width: 960px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.profile, .team-member {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.profile img, .team-member img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.profile img:hover, .team-member img:hover {
  transform: scale(1.05);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
  text-align: center;
}

.team-member h3 {
  margin: 0.5rem 0 0.3rem 0;
  color: #003366;
}

.team-member p {
  font-size: 0.95rem;
  color: #555;
}

/* Add responsive support */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.8rem;
  }

  header p {
    font-size: 1rem;
  }

  .profile, .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar .nav-links {
    display: none;
    flex-direction: column;
    background: #003366;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px;
  }

  #menu-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }

  .navbar .hamburger {
    display: block;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Remaining existing styles stay intact here… */

                  