@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

.gradient-bg {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin: 1rem;
}

.process-step {
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.5rem; /* Line starts at the bottom edge of the (former) number circle */
  bottom: calc(
    -3rem - 2.5rem
  ); /* Adjusted to match 'top' and prevent overshoot */
  left: calc(1.25rem - 1px); /* Center the line with the w-10 number circle */
  width: 2px;
  background-color: #e5e7eb;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  cursor: pointer;
  padding: 1.5rem 0;
  font-weight: 600;
}

.faq-answer {
  padding-bottom: 1.5rem;
  display: none;
}

.faq-open .faq-answer {
  display: block;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.4),
    0 4px 6px -2px rgba(99, 102, 241, 0.2);
}

.section {
  padding: 5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Custom style for navigation links vertical padding */
header nav a {
  padding: 16px 0; /* Adds 16px padding top and bottom */
}
