        .faq-section {
      padding: 80px 20px;
      background: #0c0c14;
      font-family: 'Segoe UI', system-ui, sans-serif;
      color: #fff;
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .faq-header h2 {
      font-size: 2.4rem;
      margin: 0;
      background: linear-gradient(90deg, #00e5ff, #0077ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .faq-header p {
      opacity: 0.8;
      margin-top: 12px;
      font-size: 1.05rem;
    }

    .faq-item {
      margin-bottom: 16px;
      border-radius: 12px;
      overflow: hidden;
      background: rgba(20, 20, 30, 0.6);
      border: 1px solid rgba(0, 180, 255, 0.2);
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      border-color: rgba(0, 180, 255, 0.5);
      box-shadow: 0 0 20px rgba(0, 180, 255, 0.15);
    }

    .faq-item.is-open {
      background: rgba(0, 180, 255, 0.1);
      border-color: #00b4ff;
      box-shadow: 0 0 20px rgba(0, 180, 255, 0.3);
    }

    .faq-question {
      width: 100%;
      padding: 10px 24px;
      background: transparent;
      border: none;
      color: white;
      font-size: 1rem;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s, background 0.3s;
    }

    .faq-question:hover {
      color: #00e5ff;
    }

    .faq-question[aria-expanded="true"] {
      color: #00e5ff;
      background: rgba(0, 180, 255, 0.1);
    }

    .faq-icon {
      transition: transform 0.3s ease;
      color: #00b4ff;
    }

    .faq-question[aria-expanded="true"] .faq-icon {
      transform: rotate(180deg);
      color: #00e5ff;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0 24px;
      background: rgba(10, 10, 20, 0.4);
    }

    .faq-answer p {
      padding: 0 0 24px;
      font-size: 0.9rem;
      margin: 0;
      opacity: 0.9;
      line-height: 1.6;
      color: white; /* Tetap putih */
    }

    .faq-item.is-open .faq-answer {
      max-height: 500px;
    }

    @media (max-width: 480px) {
      .faq-header h2 {
        font-size: 1.4rem;
      }
      .faq-question {
        font-size: 0.6rem;
        padding: 6px 10px;
      }
      
      .faq-answer p {
      padding: 0 0 24px;
      font-size: 0.6rem;
    }
    }