body {
  overflow-x: hidden;
}

.who-we-are {
  width: 100%;
  height: fit-content;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  padding: 1rem 2rem;
  gap: 3rem;
}

.who-content {
  flex: 1;
  text-align: left;
  color: #fff;
  max-width: 600px;
}

.who-content h1 {
  font-size: 2.8em;
  margin-bottom: 0.3em;
  font-weight: 700;
}

.who-content h2 {
  font-size: 2em;
  margin-bottom: 1em;
  font-weight: 400;
  color: #eaeaea;
}

.who-content p {
  font-size: 1em;
  color: #bdbdbd;
  margin-bottom: 2em;
}

.who-btn {
  background: linear-gradient(180deg, #676c73 0%, #383838 100%);
  color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 999px;
  padding: 0.5em 2em;
  font-size: 1.1em;
  cursor: pointer;
  margin-bottom: 2em;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
  height: 40px;
  transition: background 0.3s;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.who-btn:hover {
  background: linear-gradient(180deg, #2c3440 0%, #181e25 100%);
}

.who-icons {
  display: flex;
  gap: 2em;
  margin-top: 1em;
}
.icon-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box img {
  width: 100px;
  height: 80px;
}

.who-image-area {
  flex: 1.2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 350px;
  max-width: 600px;
  height: 420px;
}
.who-image-area img {
  max-width: 550px;
  min-height: 600px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  z-index: 1;
  position: relative;
}
.who-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  border-radius: 40px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 900px) {
  .who-container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
    align-items: stretch;
  }
  .who-image-area {
    width: 100%;
    height: 260px;
    max-width: 100%;
    min-width: unset;
  }
  .who-image-area img {
    min-height: 0;
    max-width: 100%;
    height: 100%;
    border-radius: 30px;
  }
  .who-content {
    max-width: 100%;
    text-align: center;
  }
  .who-content h1 {
    font-size: 2em;
  }
  .who-content h2 {
    font-size: 1.3em;
  }
  .who-content p {
    font-size: 0.95em;
  }
  .who-icons {
    justify-content: center;
    gap: 1.2em;
  }
  .icon-box img {
    width: 60px;
    height: 48px;
  }
}

@media (max-width: 600px) {
  .who-container {
    padding: 1.2rem 0.5rem;
    gap: 1.2rem;
  }
  .who-content h1 {
    font-size: 1.3em;
  }
  .who-content h2 {
    font-size: 1em;
  }
  .who-content p {
    font-size: 0.9em;
  }
  .who-btn {
    font-size: 1em;
    padding: 0.5em 1.2em;
    height: 36px;
  }
  .who-image-area {
    height: 160px;
    border-radius: 18px;
  }
  .who-image-area img {
    border-radius: 18px;
  }
  .icon-box img {
    width: 54px;
    height: 44px;
  }
}

@media (max-width: 400px) {
  .who-container {
    padding: 0.5rem 0.2rem;
    gap: 0.7rem;
  }
  .who-content h1 {
    font-size: 1em;
  }
  .who-content h2 {
    font-size: 0.85em;
  }
  .who-btn {
    font-size: 0.95em;
    padding: 0.4em 0.8em;
    height: 32px;
  }
  .who-image-area {
    height: 90px;
  }
  .icon-box img {
    width: 40px;
    height: 32px;
  }
}
