/* style/faq.css */
.page-faq {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C; /* Primary dark background */
}

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

.page-faq__highlight {
  color: #FFD700; /* Gold accent */
}

/* Hero Section */
.page-faq__hero {
  background: linear-gradient(135deg, #1A202C, #3a455e);
  padding: 100px 0;
  text-align: center;
}

.page-faq__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-faq__hero-description {
  font-size: 1.2em;
  color: #e5dfd3;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.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;
  border: none;
  cursor: pointer;
}

.page-faq__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
}

.page-faq__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-faq__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary */
  border: 2px solid #FFD700;
}

.page-faq__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

/* FAQ Sections */
.page-faq__sections {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-faq__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-faq__section-subtitle {
  font-size: 1.1em;
  color: #e5dfd3;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.page-faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-faq__card {
  background-color: #2a3342; /* Slightly lighter dark for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-faq__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-faq__card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(80%) saturate(1000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Make icons gold */
}

.page-faq__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-faq__card-description {
  font-size: 1em;
  color: #e5dfd3;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-faq__btn--link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
}

.page-faq__btn--link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #FFD700;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.page-faq__btn--link:hover::after {
  transform: scaleX(1);
}

/* CTA Bottom Section */
.page-faq__cta-bottom {
  background-color: #3a455e; /* A slightly different dark tone */
  padding: 80px 0;
  text-align: center;
}

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

.page-faq__cta-description {
  font-size: 1.1em;
  color: #e5dfd3;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-faq__hero-title {
    font-size: 2.8em;
  }
  .page-faq__section-title {
    font-size: 2.2em;
  }
  .page-faq__cta-title {
    font-size: 2em;
  }
  .page-faq__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-faq__hero {
    padding: 80px 0;
  }
  .page-faq__hero-title {
    font-size: 2.2em;
  }
  .page-faq__hero-description {
    font-size: 1em;
  }
  .page-faq__hero-actions, .page-faq__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-faq__sections, .page-faq__cta-bottom {
    padding: 60px 0;
  }
  .page-faq__section-title {
    font-size: 1.8em;
  }
  .page-faq__card-title {
    font-size: 1.5em;
  }
}

@media (max-width: 576px) {
  .page-faq__hero {
    padding: 60px 0;
  }
  .page-faq__hero-title {
    font-size: 1.8em;
  }
  .page-faq__hero-description {
    font-size: 0.9em;
  }
  .page-faq__btn {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-faq__section-title {
    font-size: 1.6em;
  }
  .page-faq__section-subtitle {
    font-size: 0.9em;
  }
  .page-faq__card {
    padding: 20px;
  }
  .page-faq__card-icon {
    width: 50px;
    height: 50px;
  }
  .page-faq__cta-title {
    font-size: 1.8em;
  }
  .page-faq__cta-description {
    font-size: 0.9em;
  }
}