/* SEO Content Section */
.seo-content-section {
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid #e1e5e9;
}

.seo-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.seo-content h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.seo-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e5e9;
    transition: all 0.3s ease;
}

.seo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.seo-item h3 {
    font-size: 1.3rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.seo-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Responsive SEO Content */
@media (max-width: 768px) {
    .seo-content-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .seo-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .seo-item {
        padding: 1.5rem;
    }
    
    .seo-item h3 {
        font-size: 1.2rem;
    }
}
