/* SEO-Optimized Content Sections */

.seo-content {
    background: #f9f9f9;
    padding: 60px 0;
}

.seo-content h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.seo-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.seo-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-right: 4px solid #E30613;
}

.seo-box h3 {
    color: #E30613;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.seo-box ul {
    list-style: none;
    padding: 0;
}

.seo-box li {
    padding: 8px 0;
    padding-right: 20px;
    position: relative;
}

.seo-box li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #E30613;
    font-weight: bold;
}

.keyword-highlight {
    color: #E30613;
    font-weight: 600;
}

.text-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 800px;
    margin: 30px auto;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .seo-content {
        padding: 40px 0;
    }
    
    .seo-content h2 {
        font-size: 1.6rem;
    }
    
    .seo-grid {
        grid-template-columns: 1fr;
    }
}

