/* SEO Section Styles */
.seo-section {
    background-color: #0c0d0f;
    color: #e0e0e0;
    padding: 60px 20px;
    margin-top: 40px;
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-intro {
    margin-bottom: 50px;
}

.seo-h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.4;
}

.seo-h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 40px 0 20px 0;
    color: #ffffff;
}

.seo-h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: #ffffff;
}

.seo-h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 12px 0;
    color: #f0f0f0;
}

.seo-paragraph {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #d0d0d0;
}

.seo-image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.seo-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.seo-features {
    margin: 50px 0;
}

.seo-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.seo-feature-item {
    background-color: #1a1b1d;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #ff7152;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 113, 82, 0.2);
}

.seo-faq {
    margin: 50px 0;
}

.seo-faq-list {
    margin-top: 30px;
}

.seo-faq-item {
    background-color: #1a1b1d;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2a2b2d;
}

.seo-faq-question {
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seo-faq-answer {
    padding: 0 20px 20px 20px;
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.7;
    display: none;
}

.seo-faq-item.active .seo-faq-answer {
    display: block;
}

.seo-testimonials {
    margin: 50px 0;
}

.seo-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.seo-testimonial {
    background-color: #1a1b1d;
    padding: 25px;
    border-radius: 8px;
    border-top: 3px solid #ff7152;
}

.seo-testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 15px;
    font-style: italic;
}

.seo-testimonial-author {
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
}

.seo-testimonial-rating {
    color: #ffd700;
    margin-bottom: 10px;
}

.seo-social-share {
    margin: 40px 0;
    padding: 30px;
    background-color: #1a1b1d;
    border-radius: 8px;
    text-align: center;
}

.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: #ffffff;
    font-weight: 600;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.seo-share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.seo-share-btn-facebook {
    background-color: #1877f2;
}

.seo-share-btn-twitter {
    background-color: #1da1f2;
}

.seo-share-btn-linkedin {
    background-color: #0077b5;
}

.seo-share-btn-whatsapp {
    background-color: #25d366;
}

.seo-share-btn-telegram {
    background-color: #0088cc;
}

.seo-links {
    margin: 40px 0;
}

.seo-internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.seo-link {
    color: #ff7152;
    text-decoration: none;
    padding: 8px 16px;
    background-color: #1a1b1d;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.seo-link:hover {
    background-color: #2a2b2d;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .seo-h1 {
        font-size: 28px;
    }
    
    .seo-h2 {
        font-size: 24px;
    }
    
    .seo-paragraph {
        font-size: 16px;
    }
    
    .seo-features-list,
    .seo-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

