/* SEO Optimizations CSS */

/* Improved heading hierarchy */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #444;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #555;
}

/* SEO Content Section */
.seo-content {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.seo-content h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.seo-content h3 {
    color: #555;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #666;
}

.seo-content a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.seo-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Improved breadcrumbs */
.breadcrumbs {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 0;
    margin-bottom: 40px;
}

.breadcrumbs h2 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
}

.breadcrumbs ol {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumbs ol li {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs ol li a {
    color: white;
    text-decoration: none;
}

.breadcrumbs ol li a:hover {
    color: #f8f9fa;
    text-decoration: underline;
}

/* Improved section titles */
.section-title h2 {
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Enhanced call-to-action buttons */
.btn-get-started {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-get-started:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Improved service boxes */
.services-2 .box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.services-2 .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.services-2 .box h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.services-2 .box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.services-2 .read-more a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.services-2 .read-more a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Enhanced FAQ section */
.faq .accordion-button {
    background: white;
    border: 1px solid #e9ecef;
    color: #333;
    font-weight: 500;
    padding: 15px 20px;
}

.faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.faq .accordion-body {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-top: none;
    padding: 20px;
    line-height: 1.6;
}

/* Improved contact section */
.contact .info-box {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact .info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact .info-box i {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact .info-box h3 {
    color: #333;
    margin-bottom: 10px;
}

.contact .info-box p {
    color: #666;
    margin: 0;
}

.contact .info-box a {
    color: #007bff;
    text-decoration: none;
}

.contact .info-box a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive improvements */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .seo-content {
        padding: 40px 0;
    }
    
    .services-2 .box {
        margin-bottom: 30px;
    }
}

/* Print styles for better accessibility */
@media print {
    .seo-content {
        background: white !important;
    }
    
    .btn-get-started {
        background: #333 !important;
        color: white !important;
    }
    
    .services-2 .box {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
} 