<style>
        .imo-faq-accordion {
            width: 100%;
            margin: 0 auto;
        }
        .imo-faq-item {
            margin-bottom: 5px 0 ;
            overflow: hidden;
            
        }
        .imo-faq-question { 
            display: flex;
            align-items: center;
            background-color: #f9f9f9;
            padding: 15px;
            font-size: 19px;
            color: #333333;
            cursor: pointer;
            transition: background-color 0.3s ease;
            border-left: 4px solid #00a32e;
            width: 100%;
            text-align: left;
        }

        .imo-faq-question:hover { 
            background-color: #ffffff ;
        }
        .imo-faq-item.active .imo-faq-question { 
            background-color: #e6f7ff;
        }
        .imo-faq-icon { 
            color: #00a32e ;
            font-size: 26px ;
            width: 26px ;
            height: 26px ;
            margin-right: 15px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .imo-faq-item.active .imo-faq-icon {
            transform: rotate(180deg);
        }
        .imo-faq-question h4 {
            font-size: 19px ;
            margin: 0;
            flex-grow: 1;
            line-height: 1.4;
        }
        .imo-faq-answer {
            font-size: 18px ;
            padding: 0 ;
            margin: 0 ;
            color: #666666 ;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .imo-faq-item.active .imo-faq-answer {
            max-height: 1000px;
        }
        .imo-faq-answer-inner {
            padding: 15px ;
            line-height: 1.6;
        }
        .imo-faq-author {
            color: #666666 ;
            font-style: italic;
            margin-top: 10px;
            text-align: right;
            font-size: 0.9em;
        }
        .imo-faq-category-group {
           
        }

        .imo-faq-category-title {
            font-size: 24px;
            color: #333333;
            background-color: #ffffff;
            padding: 10px 0;
            margin: 0 0 20px 0;
          
        }

        .imo-faq-search {
            margin-bottom: 30px;
        }
        .imo-faq-search form {
            display: flex;
            max-width: 100%;
            margin: 0 auto;
        }
        .imo-faq-search input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            font-size: 16px;
        }
        .imo-faq-search button {
            padding: 12px 20px;
            background: #0073aa ;
            color: #ffffff ;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 16px;
        }
        .imo-faq-expand-all {
            margin-bottom: 20px;
            text-align: center;
        }
        .imo-faq-expand-all button {
            padding: 8px 15px;
            margin: 0 5px;
            background: #f0f0f0;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
        }
        .imo-faq-pagination {
            text-align: center;
            margin-top: 30px;
        }
        </style>