.benefit-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 1rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .benefit-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
  }
  
  .benefit-box:hover {
    transform: translateY(-5px);
  }
  
  .benefit-box .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
  }
  
  .benefit-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .benefit-box p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
  }
  
  /* Icon colors */
  .icon.blue { background-color: #2185d0; }
  .icon.green { background-color: #21ba45; }
  .icon.orange { background-color: #f2711c; }
  