.page-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-faq__hero {
  background: linear-gradient(135deg, #007BFF, #4da3ff); /* Main color with a lighter variant */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 40px;
}

.page-faq__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-faq__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-faq__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #007BFF; /* Main color for text */
}

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

.page-faq__btn--secondary {
  background-color: #007BFF; /* Main color */
  color: #fff;
  border: 1px solid #0056b3;
}

.page-faq__btn--secondary:hover {
  background-color: #0056b3;
  color: #FFD700; /* Auxiliary color for text */
  transform: translateY(-2px);
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Main color */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
  position: relative;
}

.page-faq__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Auxiliary color */
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-faq__section-intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 50px;
  color: #555;
}

.page-faq__categories {
  padding: 60px 0;
  background-color: #fff;
}

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

.page-faq__category-card {
  background-color: #f0f8ff; /* Lighter variant of main color */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-faq__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-faq__category-title {
  font-size: 1.6em;
  color: #007BFF; /* Main color */
  margin-bottom: 15px;
}

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

.page-faq__general-questions, .page-faq__detailed-questions {
  padding: 60px 0;
}

.page-faq__sub-section-title {
  font-size: 2em;
  color: #007BFF;
  margin-top: 50px;
  margin-bottom: 30px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

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

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

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

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

.page-faq__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #007BFF;
  transition: transform 0.3s ease;
}

.page-faq__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-faq__accordion-content {
  padding: 0 25px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq__accordion-content.active {
  max-height: 500px; /* Adjust based on content length */
  padding: 20px 25px;
}

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

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

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

.page-faq__image--small {
  max-width: 300px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__image--medium {
  max-width: 600px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__cta-bottom {
  background-color: #007BFF; /* Main color */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  margin-top: 60px;
}