/* Added CSS for Features Section */

.features-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 30px;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 220px;
}

.feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #E8F5E9;
  color: #2E7D32;
  font-size: 24px;
}

.feature-text h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  color: #333;
}

.feature-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
}

@media (max-width: 768px) {
  .features-section {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .feature-item {
    width: 100%;
  }
}
