.page-resources-aceph-faq {
  color: #333333; /* Default text color for light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-aceph-faq__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-resources-aceph-faq__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-resources-aceph-faq__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-aceph-faq__hero-title {
  font-size: 3.2em;
  color: #DAA520;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-aceph-faq__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-resources-aceph-faq__button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.page-resources-aceph-faq__button--primary {
  background-color: #DAA520;
  color: #1A1A1A;
}

.page-resources-aceph-faq__button--primary:hover {
  background-color: #e5c063;
  transform: translateY(-2px);
}

.page-resources-aceph-faq__button--secondary {
  background-color: #1A1A1A;
  color: #DAA520;
  border: 2px solid #DAA520;
}

.page-resources-aceph-faq__button--secondary:hover {
  background-color: #333333;
  color: #e5c063;
  transform: translateY(-2px);
}

.page-resources-aceph-faq__content-area {
  max-width: 800px; /* Constrain content width for readability */
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-aceph-faq__faq-container {
  margin-bottom: 60px;
}

.page-resources-aceph-faq__section-title {
  font-size: 2.5em;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-aceph-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #DAA520;
  border-radius: 2px;
}

.page-resources-aceph-faq__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #DAA520;
}

.page-resources-aceph-faq__faq-question {
  font-size: 1.5em;
  color: #1A1A1A;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-resources-aceph-faq__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #DAA520;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-resources-aceph-faq__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-aceph-faq__faq-answer {
  font-size: 1.1em;
  color: #444444;
  display: none; /* Hidden by default, shown by JS */
  padding-top: 15px;
  border-top: 1px solid #eeeeee;
  margin-top: 15px;
}

.page-resources-aceph-faq__faq-answer p {
  margin-bottom: 15px;
}

.page-resources-aceph-faq__faq-answer ol,
.page-resources-aceph-faq__faq-answer ul {
  margin-bottom: 15px;
  padding-left: 25px;
}

.page-resources-aceph-faq__faq-answer li {
  margin-bottom: 8px;
}

.page-resources-aceph-faq__faq-answer strong {
  color: #1A1A1A;
}

.page-resources-aceph-faq__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-aceph-faq__conclusion {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #1A1A1A;
  color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-aceph-faq__conclusion .page-resources-aceph-faq__section-title {
  color: #DAA520;
}

.page-resources-aceph-faq__conclusion .page-resources-aceph-faq__section-title::after {
  background-color: #FFFFFF;
}

.page-resources-aceph-faq__conclusion p {
  font-size: 1.1em;
  margin-bottom: 25px;
}

.page-resources-aceph-faq__related-resources {
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-resources-aceph-faq__resource-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-resources-aceph-faq__resource-item a {
  display: block;
  background-color: #DAA520;
  color: #1A1A1A;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-resources-aceph-faq__resource-item a:hover {
  background-color: #e5c063;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-aceph-faq__hero-title {
    font-size: 2.5em;
  }

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

  .page-resources-aceph-faq__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-aceph-faq__button {
    width: 100%;
    padding: 10px 20px;
  }

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

  .page-resources-aceph-faq__faq-question {
    font-size: 1.3em;
  }

  .page-resources-aceph-faq__faq-answer {
    font-size: 0.95em;
  }

  .page-resources-aceph-faq__image {
    max-width: 100%;
    height: auto;
  }

  .page-resources-aceph-faq__content-area {
    padding: 20px 15px;
  }

  .page-resources-aceph-faq__resource-list {
    flex-direction: column;
    gap: 10px;
  }

  .page-resources-aceph-faq__resource-item a {
    width: 100%;
  }
}

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

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

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

  .page-resources-aceph-faq__faq-question {
    font-size: 1.2em;
  }
}