<style>
  .benefits-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  .benefits-header {
    margin-bottom: 30px;
  }
  .benefits-title {
    font-size: 2em;
    font-weight: bold;
    color: #333;
    text-align: center;
  }
  .benefits-subtitle {
    font-size: 1.2em;
    color: #666;
    text-align: center;
  }
  .benefits-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .benefit-item {
    flex: 1 1 30%;
    max-width: 300px;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }
  .benefit-item:hover {
    transform: translateY(-10px);
  }
  .icon img {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    display: block;
  }
  .benefit-title {
    font-size: 1.5em;
    margin: 10px 0;
    color: #444;
  }
  .benefit-description {
    font-size: 1em;
    color: #555;
  }
</style>