/* 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, #4a90e2);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-faq__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[IMAGE:faq_banner]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-faq__hero > div {
  position: relative;
  z-index: 1;
}

.page-faq__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f8ff;
}

.page-faq__button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-faq__button--primary {
  background-color: #FFC107;
  color: #000;
}

.page-faq__button--primary:hover {
  background-color: #e0a800;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq__button--secondary {
  background-color: transparent;
  color: #007BFF;
  border: 2px solid #007BFF;
  margin-right: 15px;
}

.page-faq__button--secondary:hover {
  background-color: #007BFF;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.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 {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-faq__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  background-color: #f0f8ff;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  transition: background-color 0.3s ease;
}

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

.page-faq__accordion-header[aria-expanded="true"] {
  background-color: #007BFF;
  color: #fff;
}

.page-faq__accordion-header[aria-expanded="true"] .page-faq__question-title {
  color: #fff;
}

.page-faq__accordion-icon {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
}

.page-faq__accordion-icon::before,
.page-faq__accordion-icon::after {
  content: '';
  position: absolute;
  background-color: #007BFF;
  transition: transform 0.3s ease;
}

.page-faq__accordion-header[aria-expanded="true"] .page-faq__accordion-icon::before,
.page-faq__accordion-header[aria-expanded="true"] .page-faq__accordion-icon::after {
  background-color: #fff;
}

.page-faq__accordion-icon::before {
  width: 100%;
  height: 2px;
  top: 9px;
  left: 0;
}

.page-faq__accordion-icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 9px;
}

.page-faq__accordion-header[aria-expanded="true"] .page-faq__accordion-icon::after {
  transform: rotate(90deg) scaleX(0);
}

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

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

.page-faq__accordion-content p:last-child {
  margin-bottom: 0;
}

.page-faq__image--small {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-faq__cta-section {
  background-color: #007BFF;
  padding: 70px 0;
  text-align: center;
  color: #fff;
}

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

.page-faq__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-faq__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0f2ff;
}

.page-faq__cta-buttons .page-faq__button {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq__title {
    font-size: 2.5em;
  }
  .page-faq__subtitle {
    font-size: 1em;
  }
  .page-faq__section-title {
    font-size: 2em;
  }
  .page-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-faq__accordion-content {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-faq__cta-title {
    font-size: 2em;
  }
  .page-faq__cta-text {
    font-size: 1em;
  }
  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq__cta-buttons .page-faq__button {
    margin: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-faq__title {
    font-size: 2em;
  }
  .page-faq__subtitle {
    font-size: 0.9em;
  }
  .page-faq__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-faq__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-faq__accordion-content {
    font-size: 0.9em;
    padding: 12px 15px;
  }
  .page-faq__cta-title {
    font-size: 1.8em;
  }
  .page-faq__cta-text {
    font-size: 0.9em;
  }
}