* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  padding: 20px;
}

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

/* Back Button */
.back-button {
  margin-bottom: 30px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #38bdf8;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.1);
}

.back-link:hover {
  background: rgba(56, 189, 248, 0.2);
  transform: translateX(-5px);
}

/* Header */
.help-title {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 3.5rem;
  font-weight: 700;
  color: #38bdf8;
  text-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

.subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 50px;
  font-weight: 300;
}

/* FAQ Section */
.faq-section {
  margin: 40px 0;
}

.faq-item {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.4);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 15px;
}

.question-number {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 12px;
  min-width: 60px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.faq-question h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-top: 5px;
  line-height: 1.4;
}

.faq-answer p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cbd5e1;
  padding-left: 80px;
  font-weight: 300;
}

/* Contact Section */
.contact-section {
  margin-top: 60px;
}

.contact-card {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.05));
  border: 2px solid rgba(56, 189, 248, 0.3);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(56, 189, 248, 0.3);
  border-color: rgba(56, 189, 248, 0.5);
}

.contact-icon {
  display: inline-flex;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
}

.contact-icon svg {
  color: #0f172a;
}

.contact-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 15px;
}

.contact-description {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 25px;
  line-height: 1.6;
}

.email-link {
  display: inline-block;
  font-size: 1.3rem;
  color: #38bdf8;
  text-decoration: none;
  padding: 15px 35px;
  background: rgba(56, 189, 248, 0.1);
  border: 2px solid #38bdf8;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.email-link:hover {
  background: #38bdf8;
  color: #0f172a;
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(56, 189, 248, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .help-title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-question {
    flex-direction: column;
    gap: 10px;
  }

  .question-number {
    font-size: 1.2rem;
    padding: 6px 15px;
    min-width: 50px;
  }

  .faq-question h3 {
    font-size: 1.4rem;
  }

  .faq-answer p {
    padding-left: 0;
    font-size: 1rem;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-card h2 {
    font-size: 1.6rem;
  }

  .email-link {
    font-size: 1.1rem;
    padding: 12px 25px;
  }
}
