.wp-seo-faq-container {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
max-width: 800px;
margin: 20px auto;
border: 1px solid #e1e1e1;
border-radius: 8px;
overflow: hidden;
background: #ffffff;
}
.wp-seo-faq-header {
background: #f8f9fa;
padding: 20px;
border-bottom: 1px solid #e1e1e1;
}
.wp-seo-faq-header h2 {
margin: 0;
font-size: 22px;
color: #2c3338;
}
.faq-item {
border-bottom: 1px solid #e1e1e1;
}
.faq-item:last-child {
border-bottom: none;
}
.faq-question {
padding: 18px 20px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 600;
color: #1d2327;
background: #fff;
transition: background 0.2s ease;
}
.faq-question:hover {
background: #f0f6fa;
}
.faq-answer {
display: none;
padding: 0 20px 20px 20px;
color: #50575e;
line-height: 1.6;
font-size: 16px;
}
.faq-icon {
width: 20px;
height: 20px;
position: relative;
transition: transform 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
content: "";
position: absolute;
background-color: #2271b1;
transition: transform 0.3s ease;
}
.faq-icon::before {
width: 2px;
height: 12px;
left: 9px;
top: 4px;
}
.faq-icon::after {
width: 12px;
height: 2px;
left: 4px;
top: 9px;
}
.faq-item.active .faq-answer {
display: block;
}
.faq-item.active .faq-icon {
transform: rotate(45deg);
}
What are the main benefits of SEO for my business?
SEO increases organic visibility, builds brand credibility, and provides a higher ROI compared to paid advertising by targeting users who are actively searching for your solutions.
How long does it take to see results from SEO?
Typically, it takes 3 to 6 months to start seeing significant movement in rankings. This timeline depends on competition, keyword difficulty, and the technical health of your website.
Do I need a mobile-friendly website for SEO?
Yes, Google uses mobile-first indexing. This means the mobile version of your website is the primary version used for ranking and indexing in search results.
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "What are the main benefits of SEO for my business?",
"acceptedAnswer": {
"@type": "Answer",
"text": "SEO increases organic visibility, builds brand credibility, and provides a higher ROI compared to paid advertising."
}
}, {
"@type": "Question",
"name": "How long does it take to see results from SEO?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Typically, it takes 3 to 6 months to start seeing significant movement in rankings depending on competition."
}
}, {
"@type": "Question",
"name": "Do I need a mobile-friendly website for SEO?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, Google uses mobile-first indexing. A mobile-friendly site is essential for modern search rankings."
}
}]
}
function toggleFaq(id) {
var item = document.getElementById(id);
var allItems = document.querySelectorAll('.faq-item');
for (var i = 0; i < allItems.length; i++) {
if (allItems[i].id !== id) {
allItems[i].classList.remove('active');
}
}
if (item.classList.contains('active')) {
item.classList.remove('active');
} else {
item.classList.add('active');
}
}