/* Features Section */
.features-section {
  background:#A2947A;
  padding: 45px 0;
}

.features__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.feature-icon {
  flex-shrink: 0;
}

.feature-icon svg {
  width: 50px;
  height: 50px;
  stroke: #FFFFFF;
}

.feature-content {
  flex: 1;
}

.feature-title {
  color: #FFF;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding: 0;
  max-width: 205px;
}

/* Responsive */

@media(max-width: 1200px) {
  .features-section {
    padding: 30px 0;
  }

  .feature-title {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .features__wrapper {
    gap: 15px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-icon svg {
    width: 40px;
    height: 40px;
  }

  .feature-title {
    font-size: 16px;
    max-width: 100%;
  }
}