.services-advantages {
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
padding: 100px 20px;
align-self: stretch;
background: #E8E6D4;
}

.services-advantages__container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-advantages__heading {
  height: 96px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #18383C;
  margin: 0 auto 30px;
}

.services-advantages__heading span {
  color: var(--color-orange);
  display: block;
}

.services-advantages__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
}

.services-advantages__row {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 240px;
}

.advantages-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  flex: 1 0 0;
  padding: 20px 20px 30px 20px;
  border-radius: 8px;
  border: 1px solid rgba(118, 130, 74, 0.60);
  background: rgba(118, 130, 74, 0.05);
  height: 240px;
  max-width: 380px;
  box-sizing: border-box;
}

.advantages-card__icon-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.advantages-card__icon-bg {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  border: 1px solid #E8E6D4;
  background-color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantages-card__icon {
  width: auto;
  height: auto;
  display: block;
}

.advantages-card__heading {
  color: #18383C;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  line-height: normal;
  width: 100%;
}

.advantages-card__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.advantages-card__desc {
  color: #18383C;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
}

.advantages-image {
  width: 380px;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
}

.advantages-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}