/* SEO Content Sections Styling */
.seo-section {
    margin-top: 60px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.seo-section h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.seo-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 2px;
}

/* Intro Paragraph */
.seo-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
}

/* How-to Steps */
.seo-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.seo-step-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.seo-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.seo-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.seo-step-card h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.seo-step-card p {
    color: #64748b;
    font-size: 1rem;
}

/* Feature Highlights */
.seo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.seo-feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.seo-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.seo-feature-text h3 {
    font-size: 1.15rem;
    color: #1e293b;
    margin-bottom: 8px;
}

.seo-feature-text p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.seo-faq {
    max-width: 900px;
    margin: 0 auto;
}

.seo-faq-item {
    margin-bottom: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.seo-faq-item h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.seo-faq-item h3::before {
    content: 'Q:';
    color: #3b82f6;
    font-weight: 700;
}

.seo-faq-item p {
    color: #475569;
    line-height: 1.7;
    padding-left: 32px;
}

/* Related Tools */
.seo-related {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.seo-related-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.seo-related-card:hover {
    border-color: #3b82f6;
    background: #eff6ff;
    transform: scale(1.02);
}

.seo-related-card img {
    width: 40px;
    height: 40px;
}

.seo-related-card span {
    font-weight: 600;
    color: #1e293b;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .seo-section h2 {
        font-size: 1.75rem;
    }

    .seo-intro {
        font-size: 1rem;
    }
}
