.faq-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    padding: 16px;
    gap: 6px;
  }

  .faq-section .faq-section-title {
    font-family: "Taviraj", serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: var(--dark-400);
    margin-top: 40px;
  }

  .faq-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    padding-top: 16px;
  }
  
  .faq-card {
    display: flex;
    width: 288px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-radius: 32px;
    background-color: var(--primary-50);
  }
  
  .faq-card h4 {
    color: var(--dark-400);
    font-family: Taviraj;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
  }
  
  .faq-card p {
    color: var(--dark-400);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
  }

  /* <- screens above 481px (BIGGER CELLPHONES) -> */

@media screen and (min-width: 481px) {
}

/* <- screens above 768px (TABLETS) -> */

@media screen and (min-width: 768px) {
  .faq-section {
    padding: 32px;
    gap: 32px;
  }

  .faq-section .faq-section-title {
    font-size: 32px;
  }

  .faq-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    row-gap: 16px;
    align-self: stretch;
    flex-wrap: wrap;
    width: 100%;
  }

  .faq-card {
    display: flex;
    width: 344px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .faq-card h4 {
    color: var(--dark-400);
    font-family: Taviraj;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
  }

  .faq-card p {
    color: var(--dark-400);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
  }
}

/* <- screens above 1024px (SMALL DESKTOP) -> */

@media screen and (min-width: 1024px) {
  .faq-section {
    padding-right: 138px;
    padding-left: 138px;
    padding-top: 32px;
    padding-bottom: 32px;
    gap: 32px;
  }

  .faq-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    row-gap: 16px;
    align-self: stretch;
    flex-wrap: wrap;
    width: 100%;
  }

  .faq-card {
    display: flex;
    width: 344px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .faq-card h4 {
    color: var(--dark-400);
    font-family: Taviraj;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
  }

  .faq-card p {
    color: var(--dark-400);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
  }
}

/* <- screens above 12001px (BIGGER DESKTOP) -> */

@media screen and (min-width: 1201px) {
  .faq-section {
    padding-left: 138px;
    padding-right: 138px;
  }
}

/* <- screens above 1600px (ULTRA-WIDE) -> */

@media screen and (min-width: 1600px) {
}
