/* US Market Specific - Minimalist SEO Styles */

/* SEO Content Section - Pure text focus */
.seo-section {
    padding: 60px 20px;
    max-width: 100%;
    background: #ffffff;
}

.seo-section .container {
    max-width: 800px;
    margin: 0 auto;
}

/* SEO Typography - Optimized for readability and SEO */
.seo-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.seo-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
    margin: 32px 0 12px 0;
    line-height: 1.4;
}

.seo-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 16px 0;
    text-align: left;
}

/* First paragraph after h2 - slightly larger for emphasis */
.seo-section h2 + p {
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
}

/* Simple Footer Styles */
.simple-footer {
    border-top: 1px solid #E2E8F0;
    padding: 40px 20px;
    background: #ffffff;
    margin-top: 60px;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-text {
    font-size: 14px;
    color: #64748B;
    margin: 0 0 8px 0;
}

.footer-description {
    font-size: 13px;
    color: #94A3B8;
    margin: 0;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .seo-section {
        padding: 40px 16px;
    }
    
    .seo-section h2 {
        font-size: 24px;
    }
    
    .seo-section h3 {
        font-size: 18px;
        margin: 24px 0 10px 0;
    }
    
    .seo-section p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .simple-footer {
        padding: 30px 16px;
    }
}

/* Print Styles for Accessibility */
@media print {
    .seo-section {
        padding: 0;
    }
    
    .simple-footer {
        display: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .seo-section h2,
    .seo-section h3 {
        color: #000000;
    }
    
    .seo-section p {
        color: #1F2937;
    }
}

/* Reading Mode Optimization */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Focus States for Accessibility */
.seo-section a:focus {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
    text-decoration: underline;
}

/* Link Styles - Minimal and clean */
.seo-section a {
    color: #3B82F6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.seo-section a:hover {
    border-bottom-color: #3B82F6;
}

/* Popular Tools Section */
.popular-tools {
    padding: 40px 20px;
    background: #F8FAFC;
}

.popular-tools .container {
    max-width: 800px;
    margin: 0 auto;
}

.popular-tools h2 {
    font-size: 24px;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 20px 0;
}

.tools-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tools-list li {
    margin-bottom: 12px;
    padding-left: 0;
}

.tools-list a {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 500;
}

.tools-list a:hover {
    text-decoration: underline;
}

/* Footer Links */
.footer-links {
    margin: 12px 0 0 0;
    font-size: 13px;
    color: #94A3B8;
}

.footer-links a {
    color: #64748B;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
    display: inline-block;
    margin: 0 8px;
}

.footer-links a:hover {
    color: #3B82F6;
}

.footer-links .separator {
    color: #CBD5E1;
    margin: 0 4px;
    font-size: 12px;
    display: inline;
}