.faq {
  margin-top: 72px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: white;
}

.faq-headline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.faq-headline p {
  margin-top: 16px;
  margin-bottom: 44px;
}

.faq-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-bottom: 1px solid black;
  padding-bottom: 16px;
  margin-bottom: 32px;
  width: 800px;
}

/* ===========================
   Responsives Design (Breakpoints)
   Range: 320px – 1920px
=========================== */

/* Extra Large Devices (1200px – 1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
}

/* Large Devices (992px – 1199px) */
@media (max-width: 1199px) {
  .faq-item {
    width: 600px;
  }
}

/* Medium Devices (768px – 991px) */
@media (min-width: 768px) and (max-width: 991px) {
}

/* Small Devices (576px – 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .faq {
    margin-top: 32px;
  }
  .faq-item {
    width: 460px;
  }
}

/* Extra Small Smartphones (320px – 575px) */
@media (min-width: 380px) and (max-width: 575px) {
  .faq {
    margin-top: 32px;
  }
  .faq-item {
    width: 320px;
  }
}

/* Extra Small Smartphones */
@media (max-width: 379px) {
  .faq {
    margin-top: 32px;
  }
  .faq-item {
    width: 280px;
  }
}
