.page-faq {
  padding-top: var(--header-offset, 120px);
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-faq__hero-section {
  background-color: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-faq__hero-container {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-faq__hero-title {
  font-size: 2.8em;
  color: #007bff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-faq__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__hero-button {
  display: inline-block;
  background-color: #28a745;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-faq__hero-button:hover {
  background-color: #218838;
}

.page-faq__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

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

.page-faq__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
}

.page-faq__accordion-group {
  margin-bottom: 60px;
}

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

.page-faq__accordion-header {
  margin: 0;
}

.page-faq__accordion-button {
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-faq__accordion-button::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-faq__accordion-button[aria-expanded="true"] {
  background-color: #0056b3;
}

.page-faq__accordion-button[aria-expanded="true"]::after {
  content: '-';
  transform: rotate(0deg);
}

.page-faq__accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-faq__accordion-body {
  padding: 25px;
  background-color: #f9f9f9;
  border-top: 1px solid #e0e0e0;
}

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

.page-faq__accordion-body a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

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

.page-faq__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforcing minimum size */
  min-height: 200px; /* Enforcing minimum size */
  object-fit: cover;
}

.page-faq__cta-section {
  background-color: #e9f7ef; /* Light green from auxiliary color */
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-faq__cta-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 20px;
}

.page-faq__cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

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

.page-faq__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-faq__cta-button--primary {
  background-color: #007bff;
  color: #ffffff;
}

.page-faq__cta-button--primary:hover {
  background-color: #0056b3;
}

.page-faq__cta-button--secondary {
  background-color: #28a745;
  color: #ffffff;
}

.page-faq__cta-button--secondary:hover {
  background-color: #218838;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-faq__hero-title {
    font-size: 2.2em;
  }
  .page-faq__section-title {
    font-size: 1.8em;
  }
  .page-faq__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-section {
    padding: 60px 15px;
  }
  .page-faq__hero-title {
    font-size: 1.8em;
  }
  .page-faq__hero-description {
    font-size: 1em;
  }
  .page-faq__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-faq__content-area {
    padding: 30px 15px;
  }
  .page-faq__section-title {
    font-size: 1.6em;
  }
  .page-faq__accordion-button {
    font-size: 1.1em;
    padding: 18px 20px;
  }
  .page-faq__cta-section {
    padding: 40px 15px;
  }
  .page-faq__cta-title {
    font-size: 1.8em;
  }
  .page-faq__cta-description {
    font-size: 0.95em;
  }
  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq__cta-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-faq__hero-image, .page-faq__image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-faq__hero-title {
    font-size: 1.5em;
  }
  .page-faq__section-title {
    font-size: 1.4em;
  }
  .page-faq__accordion-button {
    font-size: 1em;
    padding: 15px;
  }
  .page-faq__cta-title {
    font-size: 1.5em;
  }
}