.seo-content{
    max-width:1200px;
    font-family:Arial,sans-serif;
    color:#333;
    line-height:1.7;
	 font-size:13px;
}

.seo-content h2{
    font-size:1.25em;
    font-weight:700;
    margin:15px 0 15px 0;
    color:#333;
    line-height:1.3;
}

.faq-section h2{
    font-size:1.25em;
    font-weight:700;
    margin:0 0 15px 0;
    padding:0;
    color:#333;
    line-height:1.3;
}

.seo-content ul{
    padding-left:20px;
    margin:0 0 15px 0;
}

.seo-content ul li{
    margin:0 0 6px 0;
    line-height:1.5;
    color:#444;
}

.seo-content p{
    margin:0 0 18px 0;
}


.faq-section{
    margin-top:0;
}

.faq-item{
    border:1px solid #e5e5e5;
    border-radius:8px;
    margin-bottom:10px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    text-align:left;
    border:none;
    background:#fff;
    padding:18px 20px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    position:relative;
}

.faq-question::after{
    content:"+";
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    font-size:22px;
}

.faq-item.active .faq-question::after{
    content:"?";
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
    background:#fafafa;
    padding:0 20px;
}

.faq-item.active .faq-answer{
    max-height:300px;
    padding:0 20px 20px;
}