.instruction-section {
  padding: 5rem 1rem;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
}

.instruction-container {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.instruction-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(to right, #00ffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.instruction-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
  margin-top: -1rem;
}

.instruction-video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.15);
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.instruction-video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.instruction-steps {
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 1.25rem;
  border-left: 4px solid #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
}

.instruction-steps h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.instruction-steps ol {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: #ddd;
  font-size: 1rem;
}

.instruction-cta {
  text-align: center;
}

.cta-button {
  background: linear-gradient(to right, #00ffff, #0077ff);
  color: #000;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s ease;
}

.cta-button:hover {
  opacity: 0.85;
}

.faq-section {
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
}

.faq-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #00ffff;
}

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

.faq-question {
  background: rgba(0, 255, 255, 0.08);
  border: none;
  color: #00ffff;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  width: 100%;
  text-align: left;
  position: relative;
  transition: background 0.3s;
}

.faq-question::after {
  content: "▼";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
}

.faq-question.active::after {
  content: "▲";
}

.faq-answer {
  background: rgba(255, 255, 255, 0.02);
  margin-top: 0.3rem;
  border-radius: 0.5rem;
  color: #ccc;
  font-size: 0.95rem;
  padding: 0 1rem;

  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

}

/* Mobile */
@media (max-width: 768px) {
  .instruction-title {
    font-size: 2rem;
  }

  .instruction-subtitle {
    font-size: 1rem;
  }

  .instruction-steps,
  .faq-section {
    padding: 1.5rem;
  }

  .instruction-steps h2,
  .faq-title {
    font-size: 1.4rem;
  }

  .cta-button {
    width: 100%;
    padding: 1rem;
  }
}