.page-faq {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light background */
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-faq__hero-section {
  background: linear-gradient(135deg, #26A9E0, #67c3e9); /* Main color to lighter variant */
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

.page-faq__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-faq__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-faq__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-faq__hero-button {
  display: inline-block;
  background-color: #EA7C07; /* Login/Action color */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-faq__hero-button:hover {
  background-color: #d9561f; /* Darker shade for hover */
}

.page-faq__accordion-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.page-faq__accordion-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-faq__accordion-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

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

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

.page-faq__accordion-question {
  margin: 0;
  flex-grow: 1;
  color: #26A9E0; /* Question color */
}

.page-faq__accordion-icon {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-faq__accordion-header.active .page-faq__accordion-icon {
  transform: rotate(45deg);
}

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

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

.page-faq__accordion-content a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

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

.page-faq__inline-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.page-faq__inline-button:hover {
  background-color: #1b769d;
}

.page-faq__highlight {
  color: #EA7C07;
  font-weight: bold;
}

.page-faq__cta-section {
  background-color: #E0F7FA; /* Lighter shade of main color */
  padding: 80px 20px;
}

.page-faq__cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-faq__cta-content {
  flex: 1;
  min-width: 300px;
}

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

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

.page-faq__cta-button {
  display: inline-block;
  background-color: #EA7C07;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-faq__cta-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

.page-faq__related-resources-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-faq__related-resources-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-faq__resource-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-faq__resource-card:hover {
  transform: translateY(-5px);
}

.page-faq__resource-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-faq__resource-title {
  font-size: 1.4em;
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-faq__resource-title a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-faq__resource-title a:hover {
  color: #1b769d;
}

.page-faq__resource-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 15px 20px;
}

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

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

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

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

  .page-faq__cta-container {
    flex-direction: column;
    text-align: center;
  }

  .page-faq__cta-image-wrapper {
    order: -1; /* Image above text on mobile */
  }

  .page-faq__cta-title {
    font-size: 2.2em;
  }

  .page-faq__resources-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-faq__hero-title {
    font-size: 2em;
  }

  .page-faq__hero-description {
    font-size: 0.9em;
  }

  .page-faq__hero-button,
  .page-faq__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-faq__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-faq__accordion-content {
    padding: 0 15px 15px 15px;
  }
}