.elementor-5509 .elementor-element.elementor-element-b877339{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-c1cf71f */.help-center {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  padding: 40px;
  color: #333;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 40px;
}
.hero h1 {
  font-size: 36px;
  color: #003366; /* Dark blue */
}
.hero p {
  color: #555;
  margin-bottom: 15px;
}
.hero input {
  padding: 12px;
  width: 60%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Topics */
.topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.topic-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.topic-card i {
  font-size: 30px;
  color: #ff9900; /* Gold accent */
  margin-bottom: 10px;
}
.topic-card h3 {
  margin-bottom: 10px;
}

/* FAQ */
.faq {
  margin-bottom: 50px;
}
.faq h2 {
  color: #003366;
  margin-bottom: 15px;
}
.faq ul {
  list-style: none;
  padding: 0;
}
.faq li {
  background: white;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

/* Contact Box */
.contact-box {
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.contact-box h2 {
  color: #003366;
}
.contact-box a {
  color: #007BFF;
  text-decoration: none;
}
.contact-box a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero input {
    width: 90%;
  }
}/* End custom CSS */