
  .jh-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Cambria, sans-serif;
    line-height: 1.8;
    color: #333;
  }

  .jh-title {
    font-size: 36px;
    color: #006E61;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .jh-section {
    margin-bottom: 30px;
  }

  .jh-business {
    border-left: 4px solid #006E61;
    background: #f7fafa;
    padding: 30px;
    border-radius: 6px;
  }

  .jh-subtitle {
    font-size: 26px;
    color: #006E61;
    margin-bottom: 15px;
  }

  .jh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
  }

  .jh-item {
    font-size: 14px;
  }

  .jh-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    color: #006E61;
    font-weight: 600;
  }

  /* 📱 Mobile Responsive */
  @media (max-width: 768px) {
    .jh-wrap {
      padding: 25px 16px;
    }

    .jh-title {
      font-size: 28px;
    }

    .jh-subtitle {
      font-size: 22px;
    }

    .jh-grid {
      grid-template-columns: repeat(1, 1fr);
    }

    .jh-business {
      padding: 20px;
    }
  }
