body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.about-us-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.hero-section h1 {
  font-size: 36px;
  width: 40%;
  color: #064e3b;
}

.hero-image {
  max-width: 500px;
}

.mission-section,
.benefits-section,
.cta-section {
  width: 100%;
  padding: 40px 0px;
  text-align: center;
}

.mission-cards,
.benefit-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 300px;
}

.card img {
  width: 48px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.benefit-cards-content {
  width: 30%;
}

.cta-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background: #f4fdfb;
  border-radius: 12px;
  padding-left: 0;
  padding-right: 0;
}

.cta-section h2 {
  font-size: 24px;
  color: #111;
}

.cta-section img {
  border-radius: 25px;
}

.cta-button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #006B57;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

@media screen and (max-width: 1000px) {
  .cta-section {
    gap: 15px;
  }
}

@media screen and (max-width: 873px) {
  .hero-section h1 {
    width: 80%;
    font-size: 32px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-section,
  .cta-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-section h1 {
    width: 80%;
    margin: 15px auto auto auto;
  }
}

@media (max-width: 550px) {
  .hero-image {
    width: 330px;
    margin: auto;
  }

  .hero-section h1 {
    font-size: 30px;
  }
}

@media screen and (max-width: 400px) {
  .hero-section h1 {
    font-size: 24px;
    width: 100%;
  }

  .hero-image {
    width: 280px;
  }
/* 
  .benefit-cards-content {
    width: 100%;
  } */
}