/* FAQ Contact Section - Layout wrapper */

.faq-contact {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .faq-contact {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .faq-contact {
    padding: 5rem 0;
  }
}

/* Section title - centered across full width */
.faq-contact__title {
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .faq-contact__title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

/* Inner container - flex layout */
.faq-contact__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .faq-contact__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
  }
}

/* FAQ column - Figma 1116px @ 1920 → 837px @ 1440 */
.faq-contact__faq {
  width: 100%;
}

@media (min-width: 1024px) {
  .faq-contact__faq {
    flex: 1;
    max-width: 837px;
  }

  /* When no contact form, FAQ takes full width */
  .faq-contact__faq--full {
    max-width: none;
  }
}

/* Contact form column - Figma 684px @ 1920 → 513px @ 1440 */
.faq-contact__form {
  width: 100%;
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 8px 0 rgba(13, 21, 50, 0.20);
}

@media (min-width: 768px) {
  .faq-contact__form {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .faq-contact__form {
    flex-shrink: 0;
    width: 513px;
    padding: 2rem;
  }
}
