
      /* Estilos personalizados para la página de FAQ */
      .faq-section {
        padding: 80px 0;
        background: #f8f9fa;
      }

      .faq-header {
        text-align: center;
        margin-bottom: 50px;
      }

      .faq-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1e293b;
        position: relative;
        display: inline-block;
      }

      .faq-header h1::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(45deg, #3a86ff, #8338ec);
        border-radius: 2px;
      }

      .faq-container {
        max-width: 800px;
        margin: 0 auto;
      }

      .faq-item {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 20px;
        overflow: hidden;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
      }

      .faq-item:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
      }

      .faq-question {
        padding: 20px 25px;
        font-size: 1.1rem;
        font-weight: 600;
        color: #1e293b;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #f8fafc;
        border-bottom: 1px solid #e2e8f0;
      }

      .faq-question i {
        transition: transform 0.3s ease;
        color: #3a86ff;
      }

      .faq-item.active .faq-question i {
        transform: rotate(180deg);
      }

      .faq-answer {
        padding: 0 25px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
      }

      .faq-item.active .faq-answer {
        padding: 20px 25px;
        max-height: 500px;
      }

      .faq-answer p {
        color: #495057;
        line-height: 1.7;
        margin-bottom: 15px;
      }

      .faq-answer ul {
        padding-left: 20px;
        margin-bottom: 15px;
      }

      .faq-answer li {
        margin-bottom: 8px;
      }

      .faq-category {
        margin-top: 50px;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 2px solid #3a86ff;
        font-size: 1.5rem;
        font-weight: 600;
        color: #1e293b;
      }

      .faq-support {
        background: #fff;
        border-radius: 10px;
        padding: 30px;
        margin-top: 50px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        text-align: center;
      }

      .faq-support h3 {
        margin-bottom: 20px;
        color: #1e293b;
      }

      .support-icon {
        font-size: 2.5rem;
        color: #3a86ff;
        margin-bottom: 20px;
      }
      .btn-primary:hover{
        color: white !important;
      }
      .btn-primary:active{
        color: white !important;
        background:#c82333 !important;
      }
    