body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

header img {
  height: 40px;
}

nav a {
  text-decoration: none;
  color: #333;
  margin: 0 15px;
  font-weight: 600;
}

nav a:hover, .active {
  color: red;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(to right, #007b5e, #00a884);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* About Content */
.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 60px 80px;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  color: #007b5e;
  margin-top: 20px;
}

.about-text p {
  line-height: 1.6;
  margin-top: 10px;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Team Section */
.team-section {
  background-color: #f8f8f8;
  text-align: center;
  padding: 60px 30px;
}

.team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.member {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.member img {
  width: 100%;
  border-radius: 10px;
}

.member h3 {
  margin: 10px 0 5px;
  color: #007b5e;
}

.member p {
  font-size: 14px;
  color: #555;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  .about-content {
    flex-direction: column;
    padding: 40px 20px;
  }
}
