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

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

.page-resources-thabet-faq__content-width {
  max-width: 800px;
}

.page-resources-thabet-faq__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #304E8A 100%); /* Darker blue gradient for hero */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-thabet-faq__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.page-resources-thabet-faq__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold color for main title */
  position: relative;
  z-index: 1;
}

.page-resources-thabet-faq__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-resources-thabet-faq__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.page-resources-thabet-faq__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05em;
  cursor: pointer;
  border: none;
}

.page-resources-thabet-faq__btn--primary {
  background-color: #FFD700; /* Auxiliary color for primary button */
  color: #0A2463; /* Main color for text */
  border: 2px solid #FFD700;
}

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

.page-resources-thabet-faq__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-thabet-faq__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-thabet-faq__btn--text {
  background-color: #0A2463;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 8px 18px;
  font-size: 0.95em;
  margin-top: 15px;
  display: inline-block;
}

.page-resources-thabet-faq__btn--text:hover {
  background-color: #FFD700;
  color: #0A2463;
  border-color: #0A2463;
}

.page-resources-thabet-faq__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-resources-thabet-faq__section-title {
  font-size: 2.2em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-resources-thabet-faq__accordion-header {
  background-color: #0A2463;
  color: #FFD700;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.3em;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1a3a7a;
  transition: background-color 0.3s ease;
}

.page-resources-thabet-faq__accordion-header:hover {
  background-color: #1a3a7a;
}

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

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

.page-resources-thabet-faq__accordion-content {
  padding: 25px;
  background-color: #ffffff;
  border-top: 1px solid #eee;
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.page-resources-thabet-faq__accordion-content h4 {
  color: #0A2463;
  font-size: 1.1em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-resources-thabet-faq__accordion-content p {
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 1.7;
  color: #555;
}

.page-resources-thabet-faq__accordion-content a {
  color: #0A2463;
  text-decoration: underline;
  font-weight: 500;
}

.page-resources-thabet-faq__accordion-content a:hover {
  color: #FFD700;
}

.page-resources-thabet-faq__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-resources-thabet-faq__cta-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-resources-thabet-faq__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
}

.page-resources-thabet-faq__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.page-resources-thabet-faq__related-resources {
  padding: 60px 0;
  background-color: #f2f4f8;
  text-align: center;
}

.page-resources-thabet-faq__resource-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 600px;
}

.page-resources-thabet-faq__resource-list li {
  margin-bottom: 10px;
}

.page-resources-thabet-faq__resource-list a {
  color: #0A2463;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  display: block;
  padding: 10px 15px;
  background-color: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-thabet-faq__resource-list a:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-thabet-faq__back-link {
  display: inline-block;
  margin-top: 30px;
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-resources-thabet-faq__back-link:hover {
  color: #FFD700;
  border-color: #0A2463;
}

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

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

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

  .page-resources-thabet-faq__btn {
    width: 100%;
    max-width: 280px;
  }

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

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

  .page-resources-thabet-faq__accordion-content {
    padding: 20px;
  }

  .page-resources-thabet-faq__cta-title {
    font-size: 2em;
  }

  .page-resources-thabet-faq__cta-description {
    font-size: 1em;
  }
}

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

  .page-resources-thabet-faq__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-resources-thabet-faq__section-title {
    font-size: 1.5em;
  }

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

  .page-resources-thabet-faq__accordion-content h4 {
    font-size: 1em;
  }

  .page-resources-thabet-faq__cta-title {
    font-size: 1.8em;
  }
}