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

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

.page-faq__hero {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-faq__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  z-index: 0;
}

.page-faq__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  z-index: 0;
}

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

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

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

.page-faq__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-faq__btn--primary {
  background-color: #FFD700;
  color: #8B0000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-faq__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-faq__btn--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-faq__btn--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

.page-faq__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-faq__section:last-of-type {
  border-bottom: none;
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #8B0000;
  border-radius: 2px;
}

.page-faq__text {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 20px;
  text-align: justify;
}

.page-faq__text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

.page-faq__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-faq__image--full-width {
  width: 100%;
}

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

.page-faq__accordion-item {
  background-color: #2a2a2a;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

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

.page-faq__accordion-question {
  margin: 0;
  color: #FFD700;
  font-size: 1.2em;
}

.page-faq__accordion-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

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

.page-faq__accordion-icon::before {
  width: 2px;
  height: 16px;
  top: 4px;
  left: 11px;
}

.page-faq__accordion-icon::after {
  width: 16px;
  height: 2px;
  top: 11px;
  left: 4px;
}

.page-faq__accordion-item[open] .page-faq__accordion-icon::before {
  transform: rotate(90deg);
}

.page-faq__accordion-item[open] .page-faq__accordion-icon::after {
  transform: rotate(180deg);
}

.page-faq__accordion-content {
  padding: 20px 25px;
  background-color: #2a2a2a;
  color: #ccc;
  font-size: 1.05em;
}

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

.page-faq__accordion-content ul,
.page-faq__accordion-content ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-faq__accordion-content li {
  margin-bottom: 8px;
}

.page-faq__accordion-content .page-faq__btn {
  margin-top: 20px;
}

.page-faq__cta-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* 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__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-faq__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-faq__accordion-question {
    font-size: 1.1em;
  }

  .page-faq__accordion-content {
    padding: 15px 20px;
    font-size: 1em;
  }
}

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

  .page-faq__subtitle {
    font-size: 0.9em;
  }

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

  .page-faq__btn {
    width: 100%;
    margin-left: 0 !important;
  }

  .page-faq__cta-buttons {
    gap: 10px;
  }
}