body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.our-story {
  padding: 40px 20px;
  background: #fff;
}

.story-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.story-text {
  flex: 1 1 400px;
  padding: 20px;
}

.story-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.story-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.story-image {
  flex: 1 1 400px;
  text-align: center;
}

.story-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #f9f9f9;
  padding: 40px 20px;
  gap: 20px;
}

.stat-box {
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.stat-box i {
  font-size: 30px;
  color: #e74c3c;
  margin-bottom: 10px;
}

.stat-box h3 {
  margin: 10px 0 5px;
}

.stat-box.active {
  background-color: #e74c3c;
  color: white;
}

.stat-box.active i {
  color: white;
}

.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

.member {
  max-width: 250px;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.member img {
  width: 100%;
  border-radius: 10px;
}

.member h4 {
  margin: 10px 0 5px;
}

.member p {
  margin-bottom: 10px;
  color: #777;
}

.social i {
  margin: 0 5px;
  color: #e74c3c;
  cursor: pointer;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #f9f9f9;
  padding: 40px 20px;
  gap: 20px;
}

.service-box {
  max-width: 300px;
  flex: 1 1 250px;
  background: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.service-box i {
  font-size: 30px;
  color: #e74c3c;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .story-container {
    flex-direction: column;
  }

  .stats, .team, .services {
    flex-direction: column;
    align-items: center;
  }
}
