/* SEO Section Styles */
.seo-section {
    background: linear-gradient(135deg, #0a0b0d 0%, #0a0b0d 100%);
    padding: 80px 20px;
    margin-top: 60px;
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-section h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.seo-section h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 2px solid #C5FF30;
    padding-bottom: 10px;
}

.seo-section h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.seo-section h4 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 500;
}

.seo-section h5 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 500;
}

.seo-section h6 {
    font-size: 1rem;
    color: #ffffff;
    margin-top: 12px;
    margin-bottom: 8px;
    font-weight: 500;
}

.seo-intro {
    background: #0a0b0d;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(197, 255, 48, 0.1);
    margin-bottom: 40px;
    border: 1px solid #2a2a2a;
}

.seo-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

.seo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.seo-feature-item {
    background: #0a0b0d;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(197, 255, 48, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #2a2a2a;
}

.seo-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(197, 255, 48, 0.2);
    border-color: #C5FF30;
}

.seo-feature-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.seo-feature-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

.seo-faq {
    background: #0a0b0d;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(197, 255, 48, 0.1);
    margin: 40px 0;
    border: 1px solid #2a2a2a;
}

.seo-faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #2a2a2a;
}

.seo-faq-item:last-child {
    border-bottom: none;
}

.seo-faq-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.seo-faq-item p {
    color: #b0b0b0;
    line-height: 1.7;
}

.seo-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.seo-testimonial-item {
    background: #0a0b0d;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(197, 255, 48, 0.1);
    border: 1px solid #2a2a2a;
    border-left: 4px solid #C5FF30;
}

.seo-testimonial-item p {
    color: #b0b0b0;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.seo-testimonial-author {
    font-weight: 600;
    color: #ffffff;
}

.seo-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.seo-links {
    background: #0a0b0d;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(197, 255, 48, 0.1);
    margin: 40px 0;
    border: 1px solid #2a2a2a;
}

.seo-links h3 {
    margin-bottom: 20px;
}

.seo-links ul {
    list-style: none;
    padding: 0;
}

.seo-links li {
    margin-bottom: 10px;
}

.seo-links a {
    color: #C5FF30;
    text-decoration: none;
    border-bottom: 2px solid #C5FF30;
    transition: color 0.3s ease;
}

.seo-links a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.seo-social-share {
    background: #0a0b0d;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(197, 255, 48, 0.1);
    margin: 40px 0;
    text-align: center;
    border: 1px solid #2a2a2a;
}

.seo-social-share h3 {
    margin-bottom: 20px;
}

.seo-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.seo-share-btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block;
}

.seo-share-btn:hover {
    transform: scale(1.05);
}

.seo-share-facebook {
    background: #1877f2;
}

.seo-share-twitter {
    background: #1da1f2;
}

.seo-share-linkedin {
    background: #0077b5;
}

.seo-share-telegram {
    background: #0088cc;
}

.seo-share-whatsapp {
    background: #25d366;
}

@media (max-width: 768px) {
    .seo-section {
        padding: 40px 15px;
    }
    
    .seo-section h1 {
        font-size: 2rem;
    }
    
    .seo-section h2 {
        font-size: 1.5rem;
    }
    
    .seo-intro,
    .seo-faq,
    .seo-links,
    .seo-social-share {
        padding: 25px;
    }
    
    .seo-features,
    .seo-testimonials {
        grid-template-columns: 1fr;
    }
}

