/* Shared SEO Content Section */
.seo-content {
    padding: 50px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
}
.seo-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}
.seo-article {
    margin-bottom: 40px;
}
.seo-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}
.seo-subheading {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}
.seo-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}
.seo-list {
    color: #555;
    line-height: 2;
    padding-left: 20px;
    margin-bottom: 15px;
}
.seo-list li {
    margin-bottom: 8px;
}
.seo-faq {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}
.seo-faq summary {
    font-weight: 600;
    padding: 15px 20px;
    cursor: pointer;
    color: #333;
    font-size: 16px;
    list-style: none;
    position: relative;
    outline: none;
}
.seo-faq summary::-webkit-details-marker {
    display: none;
}
.seo-faq summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 400;
    color: #666;
}
.seo-faq[open] summary::after {
    content: '-';
}
.seo-faq-content {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.6;
}
/* Internal Linking Area */
.seo-related {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}
.seo-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.seo-related-item {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
}
.seo-related-item:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0,123,255,0.1);
}
