
      #faq-btn {
        position: fixed !important;
        bottom: 20px;
        left: 20px;
        width: 56px;
        height: 56px;
        background-color: #fff;
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        z-index: 9999;
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
        transition: background 0.3s;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
      }
    
      #faq-btn:hover {
        background-color: #E91E63;
      }
    
      #faq-modal {
        display: none;
        position: fixed;
        z-index: 9998;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        justify-content: center;
        align-items: center;
      }
    
      .faq-content {
        background: #fff;
        width: 90%;
        max-width: 600px;
        max-height: 85vh;
        overflow-y: auto;
        border-radius: 12px;
        padding: 20px;
        position: relative;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        animation: slideUp 0.3s ease;
        margin: 20px;
      }
    
      @keyframes slideUp {
        from { transform: translateY(20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
      }
    
      .faq-content h2 {
        font-size: 20px;
        text-align: center;
      }
    
      .faq-item {
        border-bottom: 1px solid #eee;
        padding: 10px 0;
      }
    
      .faq-question {
        font-weight: bold;
        font-size: 15px;
        cursor: pointer;
      }
    
      .faq-answer {
        font-size: 14px;
        margin-top: 6px;
        display: none;
        color: #444;
        line-height: 1.5;
      }

      .faq-answer img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 8px 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      }

      .faq-answer table {
        width: 100%;
        border-collapse: collapse;
        margin: 10px 0;
        font-size: 13px;
      }

      .faq-answer table th,
      .faq-answer table td {
        padding: 8px 6px;
        text-align: left;
        border-bottom: 1px solid #ddd;
      }

      .faq-answer table th {
        background-color: #f8f9fa;
        font-weight: 600;
      }

      .faq-contact {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 15px;
        margin-top: 20px;
        text-align: center;
        border: 1px solid #e9ecef;
      }

      .faq-contact p {
        margin: 0;
        font-size: 14px;
        color: #495057;
      }

      .faq-contact a {
        color: #4f46e5;
        text-decoration: none;
        font-weight: 500;
      }

      .faq-contact a:hover {
        text-decoration: underline;
      }
    
      .faq-item.active .faq-answer {
        display: block;
      }
    
      .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 22px;
        background: none;
        border: none;
        cursor: pointer;
        color: #999;
      }
    
      @media (max-width: 768px) {
        .faq-content {
          width: 95%;
          max-width: none;
          margin: 10px;
          padding: 15px;
          max-height: 90vh;
        }

        .faq-content h2 {
          font-size: 18px;
        }

        .faq-question {
          font-size: 14px;
        }

        .faq-answer {
          font-size: 13px;
        }

        .faq-answer table {
          font-size: 11px;
        }

        .faq-answer table th,
        .faq-answer table td {
          padding: 6px 4px;
        }

        .faq-contact {
          padding: 12px;
        }

        .faq-contact p {
          font-size: 13px;
        }
      }

      @media (max-width: 480px) {
        .faq-content {
          width: 98%;
          margin: 5px;
          padding: 12px;
          border-radius: 8px;
        }

        .faq-content h2 {
          font-size: 16px;
          margin-bottom: 15px;
        }

        .faq-question {
          font-size: 13px;
        }

        .faq-answer {
          font-size: 12px;
        }

        .faq-answer table {
          font-size: 10px;
        }

        .faq-answer table th,
        .faq-answer table td {
          padding: 4px 2px;
        }

        #faq-btn {
          width: 50px;
          height: 50px;
          font-size: 20px;
          bottom: 15px;
          left: 15px;
          display: block !important;
          visibility: visible !important;
          opacity: 1 !important;
        }

        .faq-contact {
          padding: 10px;
        }

        .faq-contact p {
          font-size: 12px;
        }
      }
    