  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0f1724;
    color: #fff;
    margin: 0;
    padding: 0;
  }

  /* === HEADER === */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: #111827;
    border-bottom: 2px solid #1f2937;
    border-radius: 10px;
  }

  .logo {
    font-size: 1.6em;
    font-weight: bold;
    color: #f59e0b;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 20px;
  }

  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05em;
    transition: color 0.2s ease;
  }

  .nav-links a:hover {
    color: #f59e0b;
  }

  /* Breadcrumb Section */
  .bg-body-secondary {
    background-color: #1e293b !important;
    border-bottom: 1px solid #334155;
  }

  .breadcrumb a {
    color: #e5e7eb !important;
  }

  .breadcrumb .active {
    color: #fbbf24 !important;
  }

  /* Header title */
  .faq-header-title h2 {
    font-size: 2.2rem;
    color: #fbbf24;
  }

  .faq-header-title span {
    font-size: 1.4rem;
    color: #d1d5db;
  }

  /* Category Title */
  .faq-category-title {
    color: #f59e0b;
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  /* Accordion */
  .accordion-item {
    background-color: #1e293b;
    border: none;
    margin-bottom: 14px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(255,255,255,0.05);
  }

  .accordion-header a {
    display: block;
    padding: 16px 20px;
    color: #fbbf24;
    font-size: 1.4rem;
    text-decoration: none;
  }

  .accordion-header a:hover {
    color: #f59e0b;
  }

  .accordion-collapse {
    background-color: #0f1724;
    border-radius: 0 0 12px 12px;
  }

  .accordion-collapse .py-8 {
    padding: 18px 24px !important;
    line-height: 1.6;
    color: #e5e7eb;
  }

  /* Spacing & Layout */
  .faq-section {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  /* === FOOTER === */
  footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #1e293b;
    border-radius: 12px;
    font-size: 0.95em;
    color: #cbd5e1;
  }

  footer a {
    color: #f59e0b;
    text-decoration: none;
  }

  footer a:hover {
    text-decoration: underline;
  }

  .return-message {
    margin-bottom:15px;
    color:#fbbf24;
    font-weight:normal;
    min-height: 22px;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .faq-category-title {
      text-align: center;
    }
  }

/* =================================== */
