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

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

/* Hero Section */
.page-faq__hero {
  background: linear-gradient(135deg, #0A2463, #3a5c9c); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-faq__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  font-weight: bold;
}

.page-faq__description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
}

/* Main Content Section */
.page-faq__main-content {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-faq__section-heading {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-faq__section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
}

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

.page-faq__faq-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-faq__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-faq__faq-card {
  padding: 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-faq__faq-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-faq__card-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-faq__card-title a:hover {
  color: #FFD700;
}

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

.page-faq__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  margin-top: auto; /* Push button to bottom */
}

.page-faq__button--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-faq__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

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

.page-faq__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
}

.page-faq__button--contact {
  background-color: #0A2463;
  color: #fff;
  border: 2px solid #0A2463;
  margin-top: 30px;
}

.page-faq__button--contact:hover {
  background-color: #FFD700;
  color: #0A2463;
  border-color: #FFD700;
}

/* Call to Action Section */
.page-faq__cta {
  background: #0A2463; /* Dark blue background */
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

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

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

.page-faq__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #ccc;
}

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

/* Contact Section */
.page-faq__contact {
  padding: 60px 0;
  text-align: center;
  background-color: #f8f8f8;
}

.page-faq__contact-text {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq__hero {
    padding: 60px 0;
  }
  .page-faq__title {
    font-size: 2.5em;
  }
  .page-faq__description {
    font-size: 1em;
  }
  .page-faq__section-heading {
    font-size: 2em;
  }
  .page-faq__faq-list {
    grid-template-columns: 1fr;
  }
  .page-faq__cta {
    padding: 60px 0;
  }
  .page-faq__cta-title {
    font-size: 2.2em;
  }
  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq__button--secondary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-faq__title {
    font-size: 2em;
  }
  .page-faq__section-heading {
    font-size: 1.8em;
  }
  .page-faq__faq-card {
    padding: 20px;
  }
  .page-faq__card-title {
    font-size: 1.3em;
  }
  .page-faq__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-faq__cta-title {
    font-size: 1.8em;
  }
}