/* style/faq.css */
.page-faq {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-faq__hero {
  background: linear-gradient(135deg, #007bff, #4da3ff);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-faq__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-faq__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-faq__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-faq__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-faq__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-faq__hero-image-wrapper {
  position: absolute;
  bottom: -20px;
  right: -50px;
  opacity: 0.1;
  z-index: 1;
  max-width: 400px;
  pointer-events: none;
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-faq__accordion-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-faq__accordion {
  margin-top: 30px;
}

.page-faq__accordion-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-faq__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #0056b3;
  cursor: pointer;
  background-color: #f0f8ff;
  border-bottom: 1px solid #e0f0ff;
  transition: background-color 0.3s ease;
}

.page-faq__accordion-header:hover {
  background-color: #e0f0ff;
}

.page-faq__accordion-item[open] .page-faq__accordion-header {
  background-color: #d0e8ff;
  color: #003d80;
}

.page-faq__accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.page-faq__accordion-icon::before,
.page-faq__accordion-icon::after {
  content: '';
  position: absolute;
  background-color: #007bff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-faq__accordion-icon::before {
  width: 12px;
  height: 2px;
}

.page-faq__accordion-icon::after {
  width: 2px;
  height: 12px;
}

.page-faq__accordion-item[open] .page-faq__accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  height: 0;
}

.page-faq__accordion-content {
  padding: 20px 25px;
  border-top: 1px solid #eee;
  color: #555;
  font-size: 1.05em;
}

.page-faq__accordion-content p {
  margin-bottom: 10px;
}

.page-faq__accordion-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-faq__accordion-content a:hover {
  text-decoration: underline;
}

.page-faq__accordion-button {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95em;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-faq__accordion-button:hover {
  background-color: #0056b3;
}

.page-faq__contact-cta {
  background-color: #007bff;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-faq__contact-content {
  max-width: 800px;
}

.page-faq__contact-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffc107;
}

.page-faq__contact-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-faq__cta-button--secondary {
  background-color: #ffc107;
  color: #000;
}

.page-faq__cta-button--secondary:hover {
  background-color: #e0a800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-faq__title {
    font-size: 2.5em;
  }

  .page-faq__subtitle,
  .page-faq__contact-text {
    font-size: 1em;
  }

  .page-faq__section-title,
  .page-faq__contact-title {
    font-size: 2em;
  }

  .page-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-faq__accordion-content {
    padding: 15px 20px;
  }

  .page-faq__hero-image-wrapper {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-faq__title {
    font-size: 2em;
  }

  .page-faq__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-faq__section-title,
  .page-faq__contact-title {
    font-size: 1.8em;
  }

  .page-faq__accordion-header {
    font-size: 1em;
  }
}