.page-faq__hero-section {
  padding-top: 10px;
  padding-bottom: 60px;
  background: #F4F7FB;
  color: #1F2D3D;
}
.page-faq__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}
.page-faq__hero-content {
  flex: 1 1 50%;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-faq__hero-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-faq__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.page-faq__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1F2D3D;
}
.page-faq__intro-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}
.page-faq__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.page-faq__btn-primary,
.page-faq__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}
.page-faq__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
}
.page-faq__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}
.page-faq__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
}
.page-faq__btn-secondary:hover {
  background: #F4F7FB;
  color: #1F2D3D;
  border-color: #1F2D3D;
}
.page-faq__faq-section {
  padding: 60px 0;
  background: #ffffff;
  color: #1F2D3D;
}
.page-faq__section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #1F2D3D;
}
.page-faq__section-subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.page-faq__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page-faq__faq-item {
  background: #F4F7FB;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.page-faq__faq-item[open] {
  background: #e9f0fc;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.1);
}
.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #1F2D3D;
  cursor: pointer;
  list-style: none;
}
.page-faq__faq-question::-webkit-details-marker {
  display: none;
}
.page-faq__faq-qtext {
  flex-grow: 1;
}
.page-faq__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF;
  transition: transform 0.3s ease;
}
.page-faq__faq-item[open] .page-faq__faq-toggle {
  transform: rotate(45deg);
}
.page-faq__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #1F2D3D;
}
.page-faq__faq-answer p {
  margin-bottom: 15px;
}
.page-faq__faq-answer p:last-child {
  margin-bottom: 0;
}
.page-faq__faq-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.page-faq__cta-section {
  padding: 80px 0;
  background: #2F6BFF;
  color: #ffffff;
  text-align: center;
}
.page-faq__cta-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}
.page-faq__cta-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-faq__cta-section .page-faq__cta-buttons {
  justify-content: center;
}
.page-faq__cta-section .page-faq__btn-primary {
  background: #ffffff;
  color: #2F6BFF;
  border-color: #ffffff;
}
.page-faq__cta-section .page-faq__btn-primary:hover {
  background: #F4F7FB;
  color: #1F2D3D;
  border-color: #F4F7FB;
}
.page-faq__cta-section .page-faq__btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #A5C4FF;
}
.page-faq__cta-section .page-faq__btn-secondary:hover {
  background: #A5C4FF;
  color: #1F2D3D;
  border-color: #A5C4FF;
}

@media (min-width: 769px) {
  .page-faq__hero-section .page-faq__container {
    display: flex;
    gap: 40px;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-faq__hero-content {
    padding-right: 0;
    text-align: center;
  }
  .page-faq__hero-image {
    margin-top: 30px;
  }
  .page-faq__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-faq__intro-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
  .page-faq__btn-primary,
  .page-faq__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-faq__faq-section {
    padding: 40px 0;
  }
  .page-faq__section-title {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .page-faq__section-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-faq__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-faq__faq-answer {
    padding: 0 20px 15px;
    font-size: 15px;
  }
  .page-faq__faq-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 15px;
  }
  .page-faq__cta-section {
    padding: 50px 0;
  }
  .page-faq__cta-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .page-faq__cta-description {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  .page-faq__section,
  .page-faq__card,
  .page-faq__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-faq__cta-section .page-faq__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
}