div.page-desc ul.faq-list
{
	float: left;
	width: 100%;
	list-style-type: none;
	margin: 0px;
	padding: 20px 40px;
	box-sizing: border-box;
}

	ul.faq-list li
	{
		float: left;
		width: 100%;
		margin-bottom: 20px;
		padding: 5px 0px;
		border-bottom: 1px solid #c4c4c4;
	}
	
	ul.faq-list li:last-child
	{
		border: none;
	}
	
		div.faq-list-item-header
		{
			display: flex;
			justify-content: space-between;
			align-items: center;
			width: 100%;
		}
		
			span.faq-list-item-title
			{
				font-size: 18px;
				font-weight: 500;
				line-height: 26px;
			}
			
			div.faq-list-item-header i
			{
				font-size: 20px;
				padding: 5px;
				color: #f56c3a;
				border-radius: 5px;
			}
			
		div.faq-list-item-desc
		{
			display: none;
			padding: 10px 0px;
			font-size: 16px;
			line-height: 24px;
		}