/* ===== SEO Optimized Mosaic Editor Content ===== */
.seo-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.description-section,
.usage-section,
.applications-section,
.faq-section,
.keywords-section {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.description-section h2 {
    color: #2d3748;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.description-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.description-section strong {
    color: #1e40af;
    font-weight: 600;
}

.usage-section h3,
.applications-section h3,
.faq-section h3,
.keywords-section h3 {
    color: #2d3748;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    font-weight: 700;
}

/* Step Container */
.step-container {
    display: grid;
    gap: 20px;
}

.step-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-item h4 {
    color: #1e40af;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Application Grid */
.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.app-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.app-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.app-item h4 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.app-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* FAQ Container */
.faq-container {
    display: grid;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 600;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Keywords Section */
.keywords-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.keyword-tag {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: transform 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.keyword-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Responsive Design for SEO Content */
@media (max-width: 768px) {
    .seo-content-wrapper {
        padding: 0 15px;
    }
    
    .description-section,
    .usage-section,
    .applications-section,
    .faq-section,
    .keywords-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .description-section h2 {
        font-size: 24px;
    }
    
    .usage-section h3,
    .applications-section h3,
    .faq-section h3,
    .keywords-section h3 {
        font-size: 20px;
    }
    
    .application-grid {
        grid-template-columns: 1fr;
    }
    
    .app-item {
        padding: 15px;
    }
    
    .step-item {
        padding: 15px;
    }
}