
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Roboto, sans-serif;
      background-color: #f9f9f9;
      color: #333;
      margin: 0;
      padding: 0;
    }

    .text_cont {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .text_cont ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .text_cont li {
      width: 180px;
      background-color: #fff;
      border-radius: 16px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
      padding: 24px 16px;
      text-align: center;
      transition: transform 0.2s ease;
    }

    .text_cont li:hover {
      transform: translateY(-4px);
    }

    .text_cont img {
      width: 64px;
      height: auto;
      margin-bottom: 12px;
    }

    .text_cont span {
      display: block;
      font-size: 16px;
      font-weight: 500;
      color: #111;
      margin-top: 4px;
    }

    @media (max-width: 768px) {
      .text_cont li {
        width: 45%;
      }
    }

    @media (max-width: 480px) {
      .text_cont li {
        width: 100%;
      }
    }
  