body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}
header {
    background-color: #0078d7;
    color: white;
    padding: 1rem 0;
    text-align: center;
}
.benefits-section, .how-to-use-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
  }

  .benefits-section h2, .how-to-use-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .benefit {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .benefit img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .benefit p {
    font-size: 1rem;
    color: #555;
  }

  .how-to-use-section ol {
    list-style: decimal inside;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
  }

  .how-to-use-section ol li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
  }