.why-we {
  background-color: white;
}

.why-we-headline {
  padding-top: 72px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.why-we-content {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  overflow-x: hidden;
}

.why-we-content div {
  flex: 1;
}

.why-we-content img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.why-we-content p {
  width: 540px;
}

.why-we-text {
  margin-top: 16px;
  overflow-x: hidden;
}

/* ===========================
   Responsives Design (Breakpoints)
   Range: 320px – 1920px
=========================== */
/* Extra Large Devices (1200px – 1599px) */
@media (min-width: 1600px) and (max-width: 1800px) {
}

/* Extra Large Devices (1200px – 1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
}

/* Large Devices (992px – 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .why-we-content img {
    width: 100%;
    height: 320px;
  }
}

/* Medium Devices (768px – 991px) */
@media (max-width: 991px) {
  .why-we-content {
    margin-top: 32px;
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
  }

  .why-we-content div {
    flex: 0;
  }

  .why-we-content img {
    width: 100%;
    height: 460px;
  }

  .why-we-content p {
    width: 100%;
  }
}

/* Small Devices (576px – 767px) */
@media (max-width: 767px) {
  .why-we-content img {
    height: 320px;
  }
}

/* Extra Small Smartphones (320px – 575px) */
@media (max-width: 575px) {
  .why-we-content img {
    height: 280px;
  }
}
