.seo-content-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.seo-content-section .seo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #0d6efd;
    display: inline-block;
}

.seo-content-section .seo-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1rem;
}

.seo-content-section .seo-text:last-child {
    margin-bottom: 0;
}

.seo-content-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.seo-content-section ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.seo-content-section ul li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 0.35rem;
}

.seo-content-section ul li strong {
    color: #1a1a2e;
}

.seo-content-section a {
    color: #0d6efd;
    text-decoration: underline;
    text-decoration-color: rgba(13, 110, 253, 0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s;
}

.seo-content-section a:hover {
    text-decoration-color: #0d6efd;
}

.seo-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.seo-feature-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.25rem;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s;
}

.seo-feature-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.seo-feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.seo-feature-item h4 i {
    color: #0d6efd;
    margin-right: 0.5rem;
}

.seo-feature-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .seo-content-section {
        padding: 2rem 0;
    }

    .seo-content-section .seo-title {
        font-size: 1.25rem;
    }

    .seo-content-section .seo-text {
        font-size: 0.95rem;
    }

    .seo-features-grid {
        grid-template-columns: 1fr;
    }
}
