/* Breadcrumb Styling */
.breadcrumb {
    margin: 20px 0;
    font-size: 14px;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: #666;
    font-size: 16px;
}

.breadcrumb a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: #004499;
}

.breadcrumb li:last-child {
    color: #666;
    font-weight: 500;
}

/* SEO Content Section */
.seo-content {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.seo-content h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.seo-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.seo-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
}

.seo-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.seo-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 10px;
}

.seo-content ul li {
    list-style-type: disc;
    padding-left: 8px;
}

.seo-content strong {
    font-weight: 600;
    color: #1a1a1a;
}


/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 13px;
        margin: 15px 0;
    }
    
    .breadcrumb li:not(:last-child)::after {
        font-size: 14px;
    }
    
    .seo-content,
    .faq-section,
    .how-to-use {
        padding: 24px;
        margin-top: 40px;
    }
    
    .seo-content h2,
    .faq-section h2,
    .how-to-use h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .seo-content,
    .faq-section,
    .how-to-use {
        padding: 16px;
        border-radius: 8px;
    }
    
    .seo-content h2,
    .faq-section h2,
    .how-to-use h2 {
        font-size: 22px;
    }
    
    .seo-content h3,
    .faq-question {
        font-size: 18px;
    }
    
    .seo-content p,
    .seo-content li,
    .faq-answer {
        font-size: 15px;
    }
}

/* Print Styles */
@media print {
    .breadcrumb,
    .how-to-use,
    .faq-section,
    .seo-content {
        page-break-inside: avoid;
    }
}