/* SEO Section Styles */
.seo-section {
    background: #101621;
    color: #ffffff;
    padding: 60px 20px;
    margin-top: 450px;
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-main-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #00d4aa;
    font-weight: bold;
}

.seo-sub-heading {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #ffffff;
    font-weight: 600;
}

.seo-content {
    margin-bottom: 50px;
}

.seo-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #00d4aa;
    font-weight: bold;
}

.seo-content h4 {
    font-size: 1.3rem;
    margin: 30px 0 20px;
    color: #00d4aa;
    font-weight: bold;
}

.seo-content h5 {
    font-size: 1.2rem;
    margin: 30px 0 20px;
    color: #00d4aa;
    font-weight: bold;
}

.seo-content h6 {
    font-size: 1.1rem;
    margin: 30px 0 20px;
    color: #00d4aa;
    font-weight: bold;
}

.seo-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
}

.seo-featured-image {
    text-align: center;
    margin: 30px 0;
}

.seo-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Features Section */
.features-section {
    margin-bottom: 50px;
}

.features-heading {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #00d4aa;
    text-align: center;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: #1a1a2e;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #2a2a3e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 212, 170, 0.2);
}

.feature-card h4 {
    color: #00d4aa;
    margin-bottom: 10px;
    font-weight: bold;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 50px;
}

.faq-heading {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #00d4aa;
    text-align: center;
    font-weight: bold;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.faq-card {
    background: #1a1a2e;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #2a2a3e;
    transition: transform 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-3px);
}

.faq-card h4 {
    color: #00d4aa;
    margin-bottom: 10px;
    font-weight: bold;
}

.faq-card p {
    color: #cccccc;
    line-height: 1.5;
}

/* Reviews Section */
.reviews-section {
    margin-bottom: 50px;
}

.reviews-heading {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #00d4aa;
    text-align: center;
    font-weight: bold;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.review-card {
    background: #1a1a2e;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #2a2a3e;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-card h4 {
    color: #00d4aa;
    margin-bottom: 10px;
    font-weight: bold;
}

.review-card p {
    color: #cccccc;
    line-height: 1.5;
    font-style: italic;
}

/* Links Section */
.links-section {
    margin-bottom: 50px;
}

.links-heading {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #00d4aa;
    text-align: center;
    font-weight: bold;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.links-card {
    background: #1a1a2e;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #2a2a3e;
}

.links-card h4 {
    color: #00d4aa;
    margin-bottom: 15px;
    font-weight: bold;
}

.links-card ul {
    list-style: none;
    padding: 0;
}

.links-card li {
    margin-bottom: 10px;
}

.links-card a {
    color: #00d4aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-card a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Call to Action */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #00d4aa, #0099cc);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 8px 16px rgba(0, 212, 170, 0.3);
}

.cta-heading {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary-btn {
    background: #ffffff;
    color: #00d4aa;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
}

.cta-secondary-btn {
    background: transparent;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
    background: #ffffff;
    color: #00d4aa;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .seo-main-heading {
        font-size: 2rem;
    }
    
    .seo-sub-heading {
        font-size: 1.5rem;
    }
    
    .features-grid,
    .faq-grid,
    .reviews-grid,
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .seo-section {
        padding: 40px 15px;
    }
    
    .seo-main-heading {
        font-size: 1.8rem;
    }
    
    .seo-sub-heading {
        font-size: 1.3rem;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-heading {
        font-size: 1.6rem;
    }
} 