/* SEO Page Styles */

/* Ensure all text is visible with highest specificity */
body .services-section {
    color: #e5e7eb !important;
}

body .services-section .service-content {
    color: #e5e7eb !important;
}

body .services-section .service-details {
    color: #e5e7eb !important;
}

body .services-section .container {
    color: #e5e7eb !important;
}

body .services-section .service-content h2 {
    color: #ffffff !important;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

body .services-section .service-content h3 {
    color: #8b5cf6 !important;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

body .services-section .service-content p {
    color: #e5e7eb !important;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

body .services-section .service-content ul {
    color: #e5e7eb !important;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

body .services-section .service-content li {
    color: #e5e7eb !important;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

body .services-section .service-content strong {
    color: #ffffff !important;
    font-weight: 600;
}

body .services-section .service-content a {
    color: #8b5cf6 !important;
    text-decoration: underline;
    transition: color 0.3s ease;
}

body .services-section .service-content a:hover {
    color: #a78bfa !important;
}

.service-features {
    list-style-type: disc;
}

.service-features li {
    color: #e5e7eb !important;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
}

.service-card h4 {
    color: #ffffff !important;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #e5e7eb !important;
    line-height: 1.6;
}

.cta-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.cta-section h3 {
    color: #8b5cf6 !important;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #e5e7eb !important;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .services-section .service-content h2 {
        font-size: 1.75rem;
    }
    
    .services-section .service-content h3 {
        font-size: 1.25rem;
    }
}