.elementor-92 .elementor-element.elementor-element-8228822{--display:flex;}/* Start custom CSS for html, class: .elementor-element-da0883c *//* =========================
   HELP CENTER
========================= */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f9fbff;
  color: #222;
}

/* Container */
.help-container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* HERO */
.help-hero {
  background: linear-gradient(135deg, #00BEFA, #0062EB);
  text-align: center;
  color: #fff;
  padding: 100px 20px;
}

.help-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 15px;
}

.help-search {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.help-search input {
  padding: 14px;
  width: 60%;
  max-width: 400px;
  border: none;
  border-radius: 999px 0 0 999px;
  outline: none;
}

.help-search button {
  padding: 14px 20px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 0 999px 999px 0;
  cursor: pointer;
}

/* CATEGORIES */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.category-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 98, 235, 0.08);
  transition: all .3s ease;
}

.category-card i {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #00BEFA, #0062EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.category-card:hover {
  transform: translateY(-6px);
}

/* ARTICLES */
.help-articles h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.article-item {
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 98, 235, 0.05);
  color: #0062EB;
  font-weight: 600;
  transition: all .3s ease;
}

.article-item:hover {
  background: linear-gradient(135deg, #00BEFA, #0062EB);
  color: #fff;
}

/* CONTACT */
.help-contact {
  text-align: center;
  background: #fff;
}

.help-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #00BEFA, #0062EB);
  color: #000;
  transition: all .3s ease;
}

.help-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, #0062EB, #004bb5);
}

/* Responsive */
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-search input {
    width: 70%;
  }
}

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .help-search {
    flex-direction: column;
    gap: 10px;
  }

  .help-search input,
  .help-search button {
    border-radius: 999px;
    width: 100%;
  }
}/* End custom CSS */