/* FAQ Block Styles */

.faq-block {
  padding: 112px 0;
  background: #1c327c; /* Figma deep blue */
}

.faq-block__container {
  max-width: 1280px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.faq-block__section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 768px;
  text-align: center;
  color: #ffffff;
}

.faq-block__title {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.faq-block__intro {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.faq-block__list {
  width: 100%;
  max-width: 768px;
  border-bottom: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}

.faq-block__item {
  overflow: hidden;
}

.faq-block__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-block__question-text {
  flex: 1 0 0;
}

.faq-block__chevron {
  width: 32px;
  height: 32px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
}

.faq-block__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-block__answer-content {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  padding: 0 0 24px 0;
}

.faq-block__answer-content p {
  margin: 0 0 1rem 0;
}

.faq-block__answer-content p:last-child {
  margin-bottom: 0;
}

.faq-block__item + .faq-block__item .faq-block__question {
  border-top: 1px solid #ffffff;
}

.faq-block__question[aria-expanded="false"] .faq-block__chevron {
  transform: rotateX(180deg);
}

.faq-block__question[aria-expanded="true"] .faq-block__chevron {
  transform: rotateX(0deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-block {
    padding: 50px 0;
  }

  .faq-block__title {
    font-size: 36px;
  }

  .faq-block__intro {
    font-size: 16px;
  }

  .faq-block__question {
    padding: 16px 0;
    font-size: 18px;
  }

  .faq-block__answer-content {
    font-size: 16px;
    padding-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .faq-block__title {
    font-size: 32px;
  }

  .faq-block__question {
    font-size: 16px;
    gap: 16px;
  }

  .faq-block__answer-content {
    font-size: 15px;
    padding-bottom: 16px;
  }
}

/* Bottom CTA */
.faq-block__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 560px;
  width: 100%;
  color: #ffffff;
}
.faq-block__bottom-title {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-align: center;
}
.faq-block__bottom-text {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.faq-block__actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
.faq-block__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
}
.faq-block__button:hover {
  background: rgba(255, 255, 255, 0.2);
}
.faq-block__button:active {
  transform: translateY(1px);
}
