/* SEO Section Styles */
.seo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: #333333;
    margin-top: 500px;
}

.seo-section {
    margin-bottom: 50px;
}

.seo-h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.3;
}

.seo-h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 25px;
    line-height: 1.4;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.seo-h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.seo-h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #555;
    margin-top: 25px;
    margin-bottom: 15px;
}

.seo-h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    margin-top: 20px;
    margin-bottom: 12px;
}

.seo-h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #777;
    margin-top: 15px;
    margin-bottom: 10px;
}

.seo-paragraph {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05rem;
    color: #444;
}

.seo-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.seo-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.seo-features-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.3s;
}

.seo-features-list li:hover {
    background-color: #f8f9fa;
    padding-left: 40px;
}

.seo-features-list li:before {
    content: "✓";
    position: absolute;
    left: 10px;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.seo-faq-item {
    margin-bottom: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #3498db;
}

.seo-faq-question {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.seo-faq-answer {
    color: #555;
    line-height: 1.7;
}

.seo-testimonial {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.seo-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.seo-testimonial-author {
    font-weight: 600;
    color: #3498db;
    margin-top: 15px;
    font-size: 0.95rem;
}

.seo-testimonial-rating {
    color: #f39c12;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.seo-link {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s;
}

.seo-link:hover {
    border-bottom: 1px solid #3498db;
}

.seo-link-external {
    color: #e74c3c;
}

.seo-link-external:hover {
    color: #c0392b;
}

.seo-share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.seo-share-button {
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.seo-share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.seo-share-facebook {
    background-color: #1877f2;
}

.seo-share-twitter {
    background-color: #1da1f2;
}

.seo-share-linkedin {
    background-color: #0077b5;
}

.seo-share-reddit {
    background-color: #ff4500;
}

.seo-share-telegram {
    background-color: #0088cc;
}

.seo-keyword-highlight {
    font-weight: 600;
    color: #2c3e50;
}

.seo-breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #777;
}

.seo-breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.seo-breadcrumb a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .seo-container {
        padding: 30px 15px;
    }
    
    .seo-h1 {
        font-size: 2rem;
    }
    
    .seo-h2 {
        font-size: 1.75rem;
    }
    
    .seo-h3 {
        font-size: 1.35rem;
    }
    
    .seo-share-buttons {
        flex-direction: column;
    }
    
    .seo-share-button {
        width: 100%;
        justify-content: center;
    }
}

