.features-section {
    padding: 60px 20px;
    background: transparent;
    text-align: center;
  }
  
  .features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    animation: fadeInUp 1.8s ease-in-out;
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .features-container {
      gap: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .features-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      padding: 0 15px;
    }
    
    .feature-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .feature-icon img {
      max-width: 70%;
      height: auto;
    }
    
    .feature h3 {
      font-size: 16px;
      margin-bottom: 8px;
    }
    
    .feature p {
      font-size: 14px;
      line-height: 1.4;
    }
  }
  
  @media (max-width: 480px) {
    .features-container {
      gap: 15px;
    }
    
    .feature {
      padding: 15px;
    }
    
    .feature-icon {
      width: 50px;
      height: 50px;
    }
  }
  
  
  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .feature-icon img {
    width: 60%;
    height: auto;
  }
  
  .feature-title {
    font-size: 20px;
    font-weight: bold;
    color: #7ac943; /* Green */
    margin-bottom: 10px;
  }
  
  .feature-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
  }
  