body.body {
  background: linear-gradient(to bottom, black, #1f2937);
  color: white;
  min-height: 100vh;
  font-family: sans-serif;
  margin: 0;
}

.header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  border-bottom: 1px solid #7dd3fc;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 1.875rem;
  font-weight: bold;
  color: #7dd3fc;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-size: 1.125rem;
  color: #93c5fd;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #bfdbfe;
}

.nav-link.active {
  color: #7dd3fc;
}

.main {
  padding: 2rem;
  max-width: 96rem;
  margin: auto;
  text-align: center;
}

.welcome {
  margin-bottom: 4rem;
}

.welcome-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #bfdbfe;
  margin-bottom: 1rem;
}

.welcome-text {
  color: #dbeafe;
  font-size: 1.125rem;
  max-width: 48rem;
  margin: auto;
}

.cards {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: #1f2937;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  border: 1px solid #7dd3fc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card:hover {
  background: #1e3a8a;
  transform: translateY(-5px);
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #7dd3fc;
  transition: color 0.3s;
}

.card:hover .card-title {
  color: #bfdbfe;
}

.card-text {
  color: #dbeafe;
  margin-top: 0.5rem;
}

.team {
  margin-top: 5rem;
  padding: 3rem 1rem;
  border-bottom: 1px solid #7dd3fc;
  border-radius: 20px;
  animation: fadeIn 1.2s ease;
}

.team-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(125, 211, 252, 0.5);
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.team-member {
  background: #111827;
  border: 1px solid #7dd3fc;
  border-radius: 1rem;
  padding: 1.5rem;
  width: 200px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(125, 211, 252, 0.6);
}

.team-photo {
  width: 100%;
  height: 180px;
  border-radius: 0.75rem;
  object-fit: cover;
  border: 1px solid #7dd3fc;
}

.team-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #7dd3fc;
  margin-top: 1rem;
}

.team-role {
  font-size: 0.95rem;
  color: #dbeafe;
}

.footer {
  background: black;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 5rem;
  color: #bfdbfe;
}

.footer-copy {
  margin-bottom: 0.5rem;
}

.footer-note {
  font-size: 0.875rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
