/* Features Section Styles */

.features-section {
  position: relative;
  padding: 10px 0 0px;
  background: #c2ae8f;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  margin-top: -40px;
  z-index: 10;
}

.features-section .container {
  position: relative;
}

.features-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.features-grid::-webkit-scrollbar {
  display: none;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 calc(25% - 30px);
  scroll-snap-align: start;
  white-space: nowrap;
}
.feature-icon-circle {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  color: #6b7c72;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-circle svg {
  width: 18px;
  height: 18px;
}

.feature-item h4 {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(44, 44, 44, 0.7);
  margin: 0;
  font-family: 'Figtree', sans-serif;
  text-transform: none;
}

@media (max-width: 1024px) {
  .feature-item {
    flex: 0 0 calc(50% - 20px);
  }

  .features-grid {
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .feature-item {
    flex: 0 0 100%;
    justify-content: center;
  }

  .features-grid {
    gap: 0;
  }
}
