.help-hero {
  height: 70vh;
  min-height: 450px;
  background: url('/images/faq-hero.jpg') center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 76px;
}

.help-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.help-hero h1 {
  position: relative;
  z-index: 1;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}

.help-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-full-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-full-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  color: var(--text-medium);
}

.faq-full-item.active .faq-full-answer {
  padding: 0 25px 20px;
  max-height: 1000px;
}

/* FAQ items (home page) */
.faq-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.01);
}

.faq-question span {
  color: var(--text-dark);
  font-size: 0.98rem;
  font-weight: 500;
}

.faq-arrow {
  color: var(--primary-orange);
  font-size: 1rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-arrow,
.faq-full-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active .faq-answer {
  padding: 0 24px 20px;
  max-height: 500px;
}

.faq-answer p,
.faq-full-answer p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  padding: 100px 20px;
  background: var(--accent-light);
  text-align: center;
}

.contact-section-inner {
  max-width: 600px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-section p {
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-form {
  text-align: left;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--accent-tan);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}
