   .toggle {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            padding: 15px 20px;
            border-bottom: 1px solid #ddd;
            transition: background 0.3s ease;
        }

        .toggle:hover {
            background: #f1f1f1;
        }

        .toggle-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .toggle-icon {
            margin-right: 10px!important;
            color: #058310!important;
        }

        .toggle-content {
            display: none;
            padding: 15px 20px;
            font-size: 0.9rem;
            line-height: 1.6;
            background: #f9f9f9;
            border: solid 1px #d7d3d3;
        }
		 

        .toggle.open + .toggle-content {
            display: block;
        }
		 
		  .toggle-content p{
            font-size: 1rem;
            
        }

        .toggle h2 {
            margin: 0;
            font-size: 1.2rem;
			color: #505051;
            display: flex;
            align-items: center;
        }
		 
	 
		 .toggle .open{
         font-size: 20px;
         color: #058310;
               
        }

.toggle .toggle-content ul li{
	    display: list-item;
    text-align: -webkit-match-parent;
    unicode-bidi: isolate;
}