.about-us .section {
  padding: 4em 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.warm-bg {
  background-color: ghostwhite;
}

.light-bg {
  background-color: whitesmoke;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: whitesmoke;
  padding: 4em 2em;
}

.hero-text {
  flex: 1;
  padding-right: 2em;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Icons Row */
.icons {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-bottom: 1em;
}

.icons img {
  width: 40px;
  height: 40px;
}

/* Dual Cards */
.dual-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

.dual-cards .card {
  flex: 1;
  background-color: #fff;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.dual-cards .card:hover {
  transform: translateY(-5px);
}

.dual-cards .card img {
  background: none;
  width: 32px;
  margin-bottom: 1em;
}

/* Team Section */
.team {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2em;
}

.team-photo img {
  max-width: 300px;
  border-radius: 8px;
}

.team-text {
  flex: 1;
}

/* Responsive */
@media (max-width: 768px) {

  .hero,
  .dual-cards,
  .team {
    flex-direction: column;
  }

  .hero-text,
  .hero-image,
  .team-photo,
  .team-text {
    padding: 0;
  }
}