body {
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
}

header {
  background-color: #00695c;
  color: white;
  padding: 20px;
  text-align: center;
  height: 100px;

}

.navbar {
  display: flex;
  align-items: center;
  background-color: rgb(116, 61, 61);
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  transition: background-color 0.3s ease;
}

.navbar a:hover {
  background-color: yellow;
  color: black;
}

.navbar a.active {
  background-color: green;
  color: white;
}

.navbar .links {
  display: flex;
  gap: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
      flex-direction: column;
      align-items: flex-start;
  }

  .navbar .links {
      flex-direction: column;
      width: 100%;
  }

  .navbar a {
      width: 100%;
      text-align: left;
      padding: 10px;
  }
}

.main-content {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  margin-bottom: 40px;
}

.section h2 {
  margin-bottom: 20px;
  color: #333;
}

.team {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.team-member {
  flex: 1 1 300px;
  max-width: 300px;
  text-align: center;
  background-color: #f4f4f4;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.team-member h3 {
  margin-bottom: 5px;
  color: #333;
}

.team-member p {
  font-size: 14px;
  color: #666;
}

.footer {
  background-color: rgb(116, 61, 61);
  color: white;
  text-align: center;
  padding: 20px;
  position: relative;
}

@media (max-width: 768px) {
  .team-member {
      flex: 1 1 100%;
  }
}