  /* Reset y estilos base */
  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  body {
      font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      background-color: #EAF4F4;
      /* Tono menta suave */
      color: #333;
      line-height: 1.6;
      padding: 20px;
  }

  /* Contenedor Principal (Ajustado para el nuevo encabezado global) */
  .faq-container {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
      padding-bottom: 60px;
  }

  /* Aviso de Estado (Nuevo) */
  .status-alert {
      background-color: #fff8e1;
      border-left: 5px solid #ffc107;
      padding: 15px;
      margin-bottom: 30px;
      text-align: left;
      border-radius: 4px;
      font-size: 0.9rem;
      color: #5d4037;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }

  .status-alert strong {
      display: block;
      margin-bottom: 5px;
      color: #e65100;
  }

  /* Filtros (Botones) */
  .filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 30px;
  }

  .filter-btn {
      border: none;
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 0.85rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      background-color: #fff;
      color: #666;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }

  .filter-btn.active {
      background-color: #1a1a1a;
      color: #fff;
  }

  @media (hover: hover) {
      .filter-btn:hover {
          background-color: #1a1a1a;
          color: #fff;
      }
  }

  /* Lista de Preguntas */
  .faq-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }

  .faq-item {
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      text-align: left;
  }

  /* Cabecera de la pregunta (siempre visible) */
  .faq-question {
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 700;
      font-size: 1rem;
      color: #1a1a1a;
      user-select: none;
  }

  /* El icono de la flecha (SVG puro) */
  .arrow-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      transition: transform 0.3s ease;
      fill: none;
      stroke: #1a1a1a;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
  }

  /* Respuesta (oculta por defecto) */
  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      background-color: #fff;
      padding: 0 20px;
      color: #555;
      font-size: 0.95rem;
  }

  /* Estado Activo (Abierto) */
  .faq-item.active .arrow-icon {
      transform: rotate(180deg);
  }

  .faq-item.active .faq-answer {
      max-height: 500px;
      padding-top: 5px;
      padding-bottom: 20px;
  }

  /* Animación de entrada para el filtrado */
  .fade-in {
      animation: fadeIn 0.4s ease-in-out;
  }

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

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Responsive ajustes */
  @media (max-width: 480px) {
      h1 {
          font-size: 1.8rem;
      }

      .filter-btn {
          padding: 8px 16px;
          font-size: 0.75rem;
      }
  }

  /* Estilo para el enlace de Instagram */
  .insta-link {
      display: inline-flex;
      align-items: center;
      margin-top: 15px;
      color: #E1306C;
      /* Color oficial de Instagram */
      text-decoration: none;
      font-weight: bold;
      font-size: 1rem;
      transition: opacity 0.3s;
  }

  @media (hover: hover) {
      .insta-link:hover {
          opacity: 0.8;
          text-decoration: underline;
      }
  }

  .insta-icon {
      width: 24px;
      height: 24px;
      margin-right: 8px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
  }