  /* Simple styling for the table to ensure readability */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
            font-weight: bold;
        }
        ul {
            margin-bottom: 20px;
        }
		
		
		  /* Base Styles */
        
        
        
        /* Container Styles (max-w-4xl mx-auto) */
        .faq-container {
            max-width: 56rem; /* max-w-4xl */
            margin-left: auto;
            margin-right: auto;
        }

       

        /* Accordion Styles */
        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 1rem; /* space-y-4 */
        }
        .faq-item {
            background-color: white;
            border-radius: 0.75rem; /* rounded-xl */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
            overflow: hidden;
        }

        /* Details/Summary (Question) Styles */
        details summary {
            cursor: pointer;
            padding: 1.25rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: #1f2937;
            transition: background-color 0.2s;
        }
        details summary:hover {
            background-color: #eef2ff;
        }
        details summary::after {
            content: '▼';
            font-size: 0.75rem;
            transition: transform 0.3s ease;
            color: #4f46e5;
        }
        details[open] summary::after {
            transform: rotate(180deg);
        }
        details[open] summary {
            background-color: #eef2ff;
            color: #4338ca;
            border-bottom: 1px solid #d1d5db;
        }

        /* FAQ Content (Answer) Styles */
        .faq-content {
            padding: 1.25rem 1.5rem;
            color: #4b5563;
            line-height: 1.6;
            border-top: 1px solid #e5e7eb;
        }
        .faq-content p {
            margin-bottom: 0.75rem; /* mb-3 */
        }
        .faq-content p:last-child {
            margin-bottom: 0;
        }
        .faq-content ul {
            list-style: disc;
            padding-left: 1.25rem; /* pl-5 */
            margin-top: 0.75rem;
            margin-bottom: 0.5rem;
        }
        .faq-content ul li {
            margin-bottom: 0.5rem; /* space-y-2 */
        }
        .faq-content .mt-3 {
            margin-top: 0.75rem; /* specific margin for paragraph following paragraph */
        }