@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&family=Raleway:wght@300;400;600&display=swap');

body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f9fc;
  color: #343a40;
}

header {
  background: linear-gradient(135deg, #0077b6, #023e8a);
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header img {
  height: 150px;
  margin-bottom: 1rem;
}

nav {
  display: flex;
  justify-content: center;
  background: #0077b6;
  padding: 0.5rem;
}

nav a {
  color: white;
  margin: 0 1rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  border-radius: 25px;
  transition: background-color 0.3s, transform 0.2s;
}

nav a:hover {
  background: #023e8a;
  transform: scale(1.1);
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(to right, #0077b6, #023e8a);
  color: white;
  border-bottom-left-radius: 50% 10vw;
  border-bottom-right-radius: 50% 10vw;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.content {
  padding: 3rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.content h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #0077b6;
}

.content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #495057;
}

.slideshow-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.slides {
  display: none;
}

.slides img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: #023e8a;
  color: white;
  font-size: 0.9rem;
}

footer a {
  color: #ade8f4;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

/* Team Leaders */
.teams-container {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.team {
  width: auto;
  padding: 15px;
  text-align: center;
}

.team-name {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #333;
}

.team-member {
  margin-top: 0;
  margin-bottom: 5px;
  line-height: 1.5;
  color: #555;
}

.team-member:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  header {
    font-size: 1.5rem;
    padding: 1rem;
  }

  header img {
    height: 100px;
  }

  nav {
    flex-wrap: wrap;
  }

  nav a {
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .content {
    padding: 1.5rem;
  }

  .content h2 {
    font-size: 1.5rem;
  }

  .slideshow-container {
    max-width: 100%;
  }

  .slides img {
    border-radius: 4px;
  }

  .teams-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .team {
    width: 80%;
  }
}

@media (max-width: 480px) {
  nav a {
    padding: 0.3rem 0.5rem;
    font-size: 0.8rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .content {
    padding: 1rem;
  }

  footer {
    font-size: 0.8rem;
  }
}
