.about-us {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-top: 20px;
}

.about-header p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.team-image {
  flex: 1;
  min-width: 300px;
}

.team-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.member-card {
  display: flex;
  gap: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.member-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
}

.member-info {
  flex: 1;
}

.member-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.member-header h2 {
  font-size: 20px;
  font-weight: 700;
}

.linkedin-icon {
  width: 24px;
  height: 24px;
}

.member-title {
  font-weight: 600;
  margin: 4px 0;
}

.member-desc {
  color: #555;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .about-us {
    padding: 80px 20px;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .about-header h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .about-header p {
    font-size: 16px;
  }

  .team-grid {
    gap: 20px;
  }

  .member-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 15px;
  }

  .member-photo {
    width: 120px;
    height: 120px;
    align-self: center;
  }

  .member-header {
    justify-content: center;
  }

  .member-header h2 {
    font-size: 18px;
  }

  .member-title {
    font-size: 14px;
  }

  .member-desc {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .about-us {
    padding: 60px 15px;
    margin-top: 25px;
  }

  .about-header h1 {
    font-size: 24px;
  }

  .about-header p {
    font-size: 15px;
  }

  .member-card {
    padding: 12px;
  }

  .member-photo {
    width: 100px;
    height: 100px;
  }

  .member-header h2 {
    font-size: 16px;
  }

  .member-title {
    font-size: 13px;
  }

  .member-desc {
    font-size: 13px;
  }
}
