:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-7c40771 */h2 {
      font-size: 28px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 40px;
      text-align: center;
      position: relative;
    }

    h2::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #0066ff, #00ccff);
      margin: 12px auto 0;
      border-radius: 2px;
    }

    .section {
      margin-bottom: 80px;
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 40px 30px;
      align-items: center;
      justify-items: center;
    }

    .logo-item {
      text-align: center;
      transition: all 0.3s ease;
      padding: 20px;
      border-radius: 12px;
    }

    .logo-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
      background: white;
    }

    .logo-item img {
      max-height: 65px;
      max-width: 100%;
      width: auto;
      filter: grayscale(30%);
      transition: all 0.3s ease;
    }

    .logo-item:hover img {
      filter: grayscale(0%);
      transform: scale(1.08);
    }

    .note {
      font-size: 15px;
      color: #555;
      text-align: center;
      margin-top: 12px;
      font-style: italic;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px 20px;
      }
      h2 {
        font-size: 24px;
      }
    }/* End custom CSS */