 <style>
    body {
      font-family: Arial, sans-serif;
      background-color: #f9f9f9;
      margin: 40px;
    }

    h1 {
      text-align: center;
      font-size: 32px;
      color: #222;
    }

    p {
      text-align: center;
      font-size: 16px;
      color: #666;
    }

    .explore {
      text-align: center;
      margin: 20px 0;
    }

    .explore a {
      color: #007bff;
      font-weight: bold;
      text-decoration: none;
    }

    .tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .tab {
      padding: 10px 20px;
      background-color: #e0e0e0;
      border-radius: 20px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .tab.active {
      background-color: #007bff;
      color: white;
    }

    .integration-grid {
      display: none;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .integration-grid.active {
      display: flex;
    }

    .integration-box {
      background-color: white;
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 20px;
      width: 160px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      font-size: 14px;
      font-weight: 500;
    }

    .integration-box img {
      width: 40px;
      height: 40px;
      margin-bottom: 10px;
    }
  </style>