section.why-us {
  padding: 104px 112px;
  background:
    linear-gradient(249deg, #f9f4ef 10.44%, rgba(255, 255, 255, 0) 63.39%),
    linear-gradient(249deg, #e2f2ef 10.44%, rgba(255, 255, 255, 0) 63.39%);
}

section.why-us .container {
  max-width: 1256px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

section.why-us .why-us-wrapper {
  display: flex;
  gap: 80px;
}

/* Titles */
section.why-us .why-us-title {
  color: #005159;
  font-weight: 500;
  letter-spacing: 1.04px;
}

section.why-us .why-us-title-desktop {
  margin: 0 0 48px 0;
  max-width: 320px;
}

section.why-us .why-us-title-mobile {
  display: none;
  text-align: left;
  margin: 0 0 32px 0;
}

/* Image Column */
section.why-us .why-us-image {
  flex: 1 0 0;
  min-width: 0;
  border-radius: 20px;
  border: 1px solid #efefef;
  overflow: hidden;
}

section.why-us .why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content Column */
section.why-us .why-us-content {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* List */
section.why-us .why-us-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

section.why-us .why-us-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

section.why-us .why-us-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 26px;
  background: #c0e8ec;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.why-us .why-us-icon svg,
section.why-us .why-us-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

section.why-us .why-us-item-title {
  color: #211e19;
  font-weight: 500;
  margin: 0 0 8px 0;
}

section.why-us .why-us-item-text {
  color: #656565;
  margin: 0;
}

/* Button */
section.why-us .why-us-button {
  margin-top: 48px;
  align-self: flex-start;
  border-radius: 24px;
  padding: 10px 30px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

/* Tablet */
@media (max-width: 1024px) {
  section.why-us {
    padding: 80px 56px;
  }

  section.why-us .why-us-wrapper {
    gap: 48px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  section.why-us {
    padding: 56px 20px;
  }

  section.why-us .why-us-wrapper {
    flex-direction: column;
    gap: 32px;
  }

  section.why-us .why-us-image,
  section.why-us .why-us-content {
    flex: 0 0 auto;
    width: 100%;
  }

  section.why-us .why-us-image img {
    height: auto;
    object-fit: initial;
  }

  section.why-us .why-us-title-desktop {
    display: none;
  }

  section.why-us .why-us-title-mobile {
    display: block;
  }

  section.why-us .why-us-list {
    gap: 24px;
  }

  section.why-us .why-us-icon {
    width: 32px;
    height: 32px;
    padding: 6px;
  }

  section.why-us .why-us-item-title {
    font-size: 20px;
    line-height: 30px;
  }

  section.why-us .why-us-item-text {
    font-size: 14px;
    line-height: 22px;
  }

  section.why-us .why-us-button {
    margin-top: 32px;
    width: 100%;
  }
}
