body {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  font-family: 'Montserrat', 'Lora', sans-serif;
  margin: 0;
  min-height: 100vh;
}

.header {
  background: rgba(30,58,138,0.95);
  box-shadow: 0 2px 16px rgba(30,58,138,0.10);
  padding: 0.7rem 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 1px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: color 0.18s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
nav ul li a.active,
nav ul li a:hover {
  color: #ffd700;
  border-bottom: 2px solid #ffd700;
}

.about {
  padding: 4rem 0;
}

.about h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #ffd700;
  font-weight: 700;
  letter-spacing: 1px;
}

.about p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #e0e7ef;
  text-align: center;
  font-family: 'Lora', serif;
}

.about h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  text-align: center;
  color: #2b7cff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  background: rgba(255,255,255,0.13);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(30,58,138,0.18);
  border: 1.5px solid #2b7cff22;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 260px;
  max-width: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s cubic-bezier(.4,0,.2,1), border-color 0.22s;
}

.team-member:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 36px rgba(43,124,255,0.18);
  border-color: #2b7cff;
}

.team-member img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.1rem;
  border: 4px solid #ffd700;
  background: #fff;
  box-shadow: 0 2px 12px #ffd70033;
  transition: border-color 0.22s;
}

.team-member h3 {
  font-family: 'Montserrat', sans-serif;
  color: #ffd700;
  font-size: 1.22rem;
  margin: 0 0 0.3rem 0;
  letter-spacing: 0.4px;
  font-weight: 600;
  text-align: center;
}

.team-member p {
  color: #e0e7ef;
  font-size: 1.04rem;
  margin: 0;
  text-align: center;
  line-height: 1.6;
  font-family: 'Lora', serif;
}

.footer {
  padding: 2rem 0;
  text-align: center;
  background: rgba(30, 60, 114, 0.9);
  color: #fff;
}

@media (max-width: 900px) {
  .header .container {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  .team-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .team-member {
    max-width: 98vw;
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .about h1 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .team-member img {
    width: 90px;
    height: 90px;
  }
  .about {
    padding: 1.2rem 0 1.2rem 0;
  }
  .about h1 {
    font-size: 1.3rem;
  }
  .logo {
    font-size: 1.1rem;
  }
  nav ul {
    gap: 1rem;
  }
}