/* ============================
   Help (Súgó) page styles
   ============================ */

/* Gyorsindító kártyák */
.help-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
  height: 100%;
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--theme-color);
  color: inherit;
  text-decoration: none;
}

.help-card .help-card-icon {
  font-size: 2.5rem;
  color: var(--theme-color);
  margin-bottom: 15px;
  display: block;
}

.help-card .help-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.help-card .help-card-text {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

/* Témakör szekciók */
.help-topic-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.help-topic-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.help-topic-section .topic-description {
  color: #555;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.help-topic-section ul {
  list-style: none;
  padding-left: 0;
}

.help-topic-section ul li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 1rem;
}

.help-topic-section ul li::before {
  content: "\F285";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--theme-color);
  font-size: 0.75rem;
  top: 12px;
}

/* Kiemelt link kártyák */
.help-highlight-links .highlight-card {
  background: #fff;
  border-radius: 8px;
  padding: 22px 20px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
}

.help-highlight-links .highlight-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--theme-color);
  text-decoration: none;
  color: inherit;
}

.help-highlight-links .highlight-card i {
  font-size: 1.5rem;
  color: var(--theme-color);
  min-width: 35px;
  text-align: center;
}

.help-highlight-links .highlight-card span {
  font-weight: 600;
  font-size: 1rem;
}

/* GYIK szekció */
.help-faq-section {
  padding-top: 50px;
  padding-bottom: 60px;
}

.help-faq-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.help-faq-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 15px;
  color: var(--theme-color);
}

.help-faq-section .accordion-body .faq-short {
  font-weight: 600;
  margin-bottom: 10px;
}

.help-faq-section .accordion-body .faq-detail {
  color: #555;
}

.help-faq-section .accordion-body .faq-detail ul {
  padding-left: 20px;
  margin-top: 5px;
}
