/* FAQ Section */
.faq-section .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-section .title {
  font-family: Ubuntu;
  font-size: 24px;
  font-weight: 400;
  line-height: 31.2px;
  text-align: left;
  color: #353535;
}

.faq-section .faq-item {
  margin-top: 16px;
  border-bottom: 1px solid #BFC0C5;
}

.faq-section .faq-question {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 16px;
}

.faq-section .faq-question h3 {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: #353535;
}

.faq-section .faq-answer {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-section .faq-answer h4 {
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: #353535;
}

.faq-section .faq-toggle {
  background-color: transparent;
  border: none;
}

.faq-section .faq-toggle .chevron {
  transition: transform 0.3s ease;
}

@media (min-width: 1280px) {
  .faq-section .container {
    width: 1200px;
    gap: 60px;
  }

  .faq-section .title {
    font-family: Ubuntu;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    text-align: left;
    color: #353535;
  }

  .faq-section .faq-question h3 {
    font-family: Ubuntu;
    font-size: 24px;
    font-weight: 400;
    line-height: 31.2px;
    text-align: left;
    color: #353535;
  }
  
  .faq-section .faq-answer h4 {
    font-family: Ubuntu;
    font-size: 20px;
    font-weight: 300;
    line-height: 31.2px;
    text-align: left;
    color: #353535;
  }
}
