body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 30px 0 10px;
}

.logo {
  width: 250px;
  height: auto;
}

.intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 40px;
  text-align: center;
}

.intro h1 {
  color: #000;
  font-size: 2em;
  margin-bottom: 10px;
}

.intro p {
  margin-bottom: 15px;
}

a {
  color: #d4aa00;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

.team {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #f8f8f8;
  padding: 40px 20px;
}

.member {
  text-align: center;
  width: 300px;
  margin: 20px;
}

.member img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.member h2 {
  color: #d4aa00;
  margin-top: 15px;
}

footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
  .intro {
    padding: 20px;
  }
  .team {
    flex-direction: column;
    align-items: center;
  }
}
