/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #0f172a;
  color: #f1f5f9;
}

/* Header */
.header {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #141e30, #243b55);
  color: #fff;
}
.header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Sections */
section {
  padding: 60px 15%;
}
section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #38bdf8;
}
section p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: justify;
}

/* Team */
.team-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.team-member {
  background: #1e293b;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}
.team-member:hover {
  transform: translateY(-8px);
}
.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}
.team-member h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #f8fafc;
}
.team-member p {
  font-size: 0.95rem;
  color: #94a3b8;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #141e30;
  color: #94a3b8;
  margin-top: 40px;
}
