  .hero {
      background: url('./assets/hero_section.png') no-repeat center center/cover;
      color: white;
      min-height: 60vh;
      display: flex;
      align-items: center;
      position: relative;
  }

  .hero-overlay {
      background: rgba(0, 0, 0, 0.5);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }

  .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: auto;
      text-align: center;
  }

  .option-card {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
      padding: 2rem;
  }

  .option-card ul {
      list-style: none;
      padding: 0;
  }

  .option-card ul li::before {
      content: "✓ ";
      color: red;
  }

  .option-card .btn {
      margin-top: 1rem;
  }