 /* Reset */
    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background-color: #000;
      font-family: Arial, sans-serif;
      color: white;
    }

    section.custom-section {
      display: flex;
      justify-content: center;
      padding: 40px 20px;
    }

    .custom-container {
      max-width: 600px;
      width: 100%;
    }

    h1 {
      font-weight: 600;
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 0.5rem;
    }

    p.custom-description {
      text-align: center;
      color: #ddd;
      margin-bottom: 2rem;
      line-height: 1.5;
      font-size: 1rem;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Tabs */
    .custom-tabs {
      display: flex;
      width: fit-content;
      margin: 0 auto 2rem;
      border-radius: 0.3rem;
      overflow: hidden;
      border: 1px solid #1f2937;
    }

    .custom-tab-button {
      flex: 1 1 auto;
      padding: 12px 24px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      background-color: #1f2937;
      color: #cbd5e1;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .custom-tab-button.active {
      background-color: #14b8a6;
      color: white;
    }

    .custom-tab-button:not(.active):hover {
      background-color: #334155;
    }

    /* FAQ list */
    .custom-faq-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .custom-faq-item {
      background-color: #1e293b;
      border-radius: 0.4rem;
      padding: 16px 20px;
      cursor: pointer;
      user-select: none;
      font-size: 1rem;
      font-weight: 500;
      transition: background-color 0.2s ease;
    }

    .custom-faq-item:hover {
      background-color: #334155;
    }

    .custom-arrow-icon {
      width: 24px;
      height: 24px;
      stroke: white;
      stroke-width: 2;
      fill: none;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .custom-faq-answer {
      margin-top: 10px;
      color: #a0aec0;
      font-weight: 400;
      line-height: 1.4;
    }