/* ========================================
   HELP PAGE STYLES
   ======================================== */

/* Help Container */
.help-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Help Header */
.help-header {
  text-align: center;
  margin-bottom: 3rem;
}

.help-intro {
  font-size: 1.125rem;
  color: #6B7280;
  max-width: 700px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #764ba2;
}

.back-link svg {
  margin-right: 0.5rem;
}

/* Help Steps */
.help-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
}

/* Step Number */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Step Content */
.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.step-description {
  color: #6B7280;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Step Images */
.step-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  border: 2px solid #E5E7EB;
  margin-top: 1rem;
  display: block;
}

/* Tip Box */
.tip-box {
  background: #EFF6FF;
  border-left: 4px solid #667eea;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.tip-title {
  font-weight: 600;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.tip-text {
  color: #1F2937;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Help Support Section */
.help-support {
  text-align: center;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet and below */
@media (max-width: 768px) {
  .help-container {
    padding: 0 1rem;
  }

  .help-step {
    padding: 1.5rem;
  }

  .step-title {
    font-size: 1.25rem;
  }

  .step-description {
    font-size: 1rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .help-intro {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .help-step {
    padding: 1.25rem;
  }

  .step-title {
    font-size: 1.125rem;
  }

  .step-description {
    font-size: 0.95rem;
  }

  .tip-box {
    padding: 0.875rem 1.25rem;
  }

  .tip-text {
    font-size: 0.875rem;
  }
}