
            /* BEM: Block - faq */
            .faq {
                background-color: var(--card-background-color);
                border-radius: var(--border-radius-main);
                padding: 2.5rem;
                width: 100%;
                box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            }


            .pi-dark-mode .faq {
                background-color: #232323;
                border-radius: 20px;
        
            }
    
            /* BEM: Element - faq__title */

            .faq__title {
                color: var(--mode-color);
                margin-bottom: 2.5rem;
                font-family: Poppins;
                font-weight: 600; 
                font-size: 38.88px;
                line-height: 100%;
                letter-spacing: 0;
                text-align: center;
            }
    
            /* BEM: Element - faq__list */
            .faq__list {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }
    
            /* BEM: Block - faq-item */
            .faq-item {
                background-color: var(--item-background-color);
                border: 1px solid var(--border-color-inactive);
                border-bottom-width: 3px;
                border-radius: var(--border-radius-item);
                padding: 1.25rem 1.5rem;
                transition: border-color var(--transition-speed) ease;
            }

           .pi-dark-mode .faq-item {
                background-color: #000000;
                
            }
    
            /* BEM: Modifier - faq-item--active */
            .faq-item--active {
                border-color: var(--border-color-active);
            }
    
            .faq-item--active .faq-item__icon {
                transform: rotate(180deg);
                background-color: #16e0a8;
                color: white;
            }
            
            .faq-item--active .faq-item__content {
                 margin-top: 1.25rem;
            }
    
            /* BEM: Element - faq-item__header */
            .faq-item__header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                gap: 1rem;
            }
    
            /* BEM: Element - faq-item__question */
            .faq-item__question {
                font-size: 22px;
                font-weight: 500;
                color: var(--mode-color);
                width: 100%;
                text-align: center;
            }

    
            /* BEM: Element - faq-item__icon */

            .faq-item__icon {
                --primary-color: #FFF;
                flex-shrink: 0;
                width: 2rem;
                height: 2rem;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease, color var(--transition-speed) ease;
                background-color: #16E0A8;
                color: var(--primary-color);
                border: 4px solid #13AD82;
            }


     
            .faq-item__icon svg {
                width: 0.875rem; 
                height: 0.875rem; 
            }
    
            /* BEM: Element - faq-item__content */
            .faq-item__content {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease-out, margin-top 0.4s ease-out;
            }
            
                /* BEM: Element - faq-item__answer */

                .faq-item__answer {
                    line-height: 1.6;
                    max-width: 482px;
                    color: var(--mode-color); 
                    margin: 0 auto;
                }


            .faq-item__answer ul {
                list-style-type: none;
                margin-top: 0.75rem;
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .faq-item__answer li::before {
                content: '•';
                color: var(--primary-color);
                font-weight: bold;
                display: inline-block;
                width: 1em;
                margin-left: -1em;
            }
            
            /* Responsive adjustments */
            @media (max-width: 768px) {
                .faq {
                    padding: 1.5rem;
                }
                .faq__title {
                    font-size: 1.875rem; 
                    margin-bottom: 2rem;
                }
                .faq-item {
                    padding: 1rem 1.25rem;
                }
                .faq-item__question {
                    font-size: 1.5rem; 
                    text-align: start;
                }
            }
    

            .faq {
                box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
                padding-bottom: 3rem;
                margin-bottom: 6rem;
            }

                .faq-item {
                    
                    padding: 2rem 1.5rem;
                    background: #F7F7F7;
                    border-radius: 12px;
                    border-bottom: 4px solid #16E0A8;
                }

                .phi-privacy {
                    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 -20px 25px -5px rgba(0, 0, 0, 0.08), 0 -10px 10px -5px rgba(0, 0, 0, 0.04);
                    padding: 2rem;
                    padding-bottom: 3rem;
                    margin-bottom: 3rem;
                    border-radius: 2rem;
                }




                