body {
  font-family: "Poppins", sans-serif;
  background-color: #121212;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.header-section {
  background: linear-gradient(180deg, #1f1f1f 0%, #8585ff 100%);
  padding: 60px 0;
  color: white;
  border-radius: 15px;
  text-align: center;
  margin: 20px;
  margin-top: 96px;
  box-shadow: 0 8px 25px rgba(133, 133, 255, 0.3);
}

.header-section h1 {
  /* start hidden, overflow clipped */
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;

  /* blinking cursor */
  border-right: 4px solid white;

  /* use our custom props */
  animation: typing 3s steps(var(--steps)) forwards,
    blink-cursor 0.5s step-end infinite;

  background: linear-gradient(135deg, #8585ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* once typing is done, stop the cursor */
@keyframes blink-cursor {
  0%,
  100% {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: var(--fullWidth);
  }
}

.header-section p {
  font-size: 20px;
  margin-top: 15px;
  background: linear-gradient(135deg, #8585ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.howtouse-container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.howtouse-card {
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 1px solid rgba(133, 133, 255, 0.2);
}

.howtouse-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(133, 133, 255, 0.2);
  border-color: #8585ff;
}

.howtouse-card h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #8585ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.howtouse-card p {
  font-size: 16px;
  background: linear-gradient(135deg, #8585ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
}

.howtouse-card ul {
  list-style: none;
  padding: 0;
}

.howtouse-card ul li {
  margin-bottom: 15px;
  font-size: 16px;
  background: linear-gradient(135deg, #8585ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 8px;
  background-color: rgba(133, 133, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.howtouse-card ul li:hover {
  background-color: rgba(133, 133, 255, 0.2);
  transform: translateX(5px);
}

.howtouse-card ul li i {
  background: linear-gradient(135deg, #8585ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 10px;
}

.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  background: linear-gradient(135deg, #8585ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq {
  margin-bottom: 30px;
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid rgba(133, 133, 255, 0.2);
  transition: all 0.3s ease;
}

.faq:hover {
  border-color: #8585ff;
  box-shadow: 0 8px 20px rgba(133, 133, 255, 0.2);
}

.faq-question {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(135deg, #8585ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #66ccff, #8585ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-answer {
  font-size: 16px;
  background: linear-gradient(135deg, #8585ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .howtouse-container {
    padding: 30px 20px;
  }

  .howtouse-card {
    margin-bottom: 30px;
    padding: 30px 20px;
  }

  .header-section {
    margin: 10px;
    padding: 40px 0;
  }

  .faq-section {
    padding: 60px 15px;
  }
}

/* Equal height cards */
.row-equal {
  display: flex;
  flex-wrap: wrap;
}

.row-equal > .col-md-4 {
  display: flex;
  flex-grow: 1;
  flex-basis: 0;
}
