:root {
  --primary-color: #ff7f50;
  --primary-dark: #ff5e2e;
  --background-light: #fffaf7;
  --text-dark: #1a1a1a;
  --text-light: #6b7280;
  --white: #ffffff;
  --gray-100: #fdf2ec;
  --gray-200: #f6e1d5;
  --gray-600: #444;
}

.help-navbar {
  justify-content: center;
  position: relative;
}

.home-btn {
  position: absolute;
  left: 0;
  top: 0.75rem;
  padding: 0.5rem 1rem;
  color: var(--primary-color);
  transition: color 0.3s;
}

.home-btn:hover {
  color: var(--primary-dark);
}

.help-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.help-section {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.help-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.step-card {
  flex: 1;
  min-width: 280px;
  padding: 1.5rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
}

.step-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
  background-color: var(--gray-200);
}

.step-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.step-card p {
  color: var(--gray-600);
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--primary-color);
  stroke-width: 2;
  fill: none;
  vertical-align: middle;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1rem;
  width: 100%;
  border: none;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--border-radius);
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: var(--primary-dark);
}

.faq-answer {
  display: none;
  padding: 1rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  margin-top: 0.5rem;
}

.intro-text {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.lang-toggle-wrapper {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.lang-toggle {
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  font-size: 0.9rem;
  background: white;
  color: var(--primary-color);
  cursor: pointer;
}
