/* style/faq.css */
.page-faq {
  font-family: Arial, sans-serif;
  color: #FFFFFF;
  background-color: #0A192F;
  line-height: 1.6;
}

.page-faq a {
  color: #FFD700;
  text-decoration: none;
}

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

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

/* Hero Section */
.page-faq__hero {
  background: linear-gradient(135deg, #0A192F, #1e3a5a);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-faq__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__hero-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
  max-width: 800px;
}

.page-faq__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
}

.page-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
  transform: scale(1.1);
}

/* Buttons */
.page-faq__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-faq__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-faq__btn--primary:hover {
  background-color: #e6c200;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-faq__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-faq__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

/* Section Styling */
.page-faq__section {
  padding: 60px 0;
}

.page-faq__section--faq {
  background-color: #0A192F;
}

.page-faq__section--promo {
  background: linear-gradient(135deg, #1e3a5a, #0A192F);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
  flex-wrap: wrap;
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Accordion */
.page-faq__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-faq__accordion-item {
  background-color: #1a2c42;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #334a66;
}

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

.page-faq__accordion-item[open] .page-faq__accordion-header {
  border-bottom: 1px solid #334a66;
}

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

.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: #FFD700;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

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

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

.page-faq__accordion-item[open] .page-faq__accordion-icon::after {
  display: none;
}

.page-faq__accordion-content {
  padding: 15px 25px 20px;
  color: #E0E0E0;
  font-size: 1.05em;
}

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

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

.page-faq__link {
  color: #FFD700;
  font-weight: bold;
}

.page-faq__link:hover {
  text-decoration: underline;
}

.page-faq__cta-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #334a66;
}

.page-faq__cta-bottom p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

/* Promo Section */
.page-faq__promo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.page-faq__promo-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__promo-description {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-faq__promo-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-faq__promo-image-wrapper {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}

.page-faq__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

  .page-faq__hero-description,
  .page-faq__promo-description {
    font-size: 1em;
  }

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

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

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

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

  .page-faq__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

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

  .page-faq__promo-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-faq__hero {
    padding: 60px 0;
  }

  .page-faq__hero-title {
    font-size: 2em;
  }

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

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