.faq-section {
  padding: 4rem 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 100px;
  align-self: start;
}

.faq-title {
  font-family: "Anton", sans-serif;
  margin-bottom: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2rem;
}

.faq-description {
  font-size: 1rem;
  font-family: "Rubik", sans-serif;
  line-height: 1.6;
}

.faq-item {
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px #3c92ca;
}

.faq-item h3 {
  margin-bottom: 0 !important;
}
.faq-header {
  margin-bottom: 1rem;
}

.faq-button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Rubik", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  color: white;
}

.faq-body p {
  font-family: "Rubik", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  padding: 13px 15px;
}

.faq-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.faq-content.show {
}

/* Responsive: mobile-first */
@media (max-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
    margin-bottom: 2rem;
  }
}
