/* About Page SEO Styles */


/* SEO Header */
.seo-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    margin-bottom: 3rem;
    border: 1px solid #dee2e6;
}

.main-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.seo-header .lead {
    color: #495057;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* About Content */
.about-content {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-content h2 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.about-content h3 {
    color: #34495e;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.about-content p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.about-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.about-content li {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.about-content strong {
    color: #2c3e50;
}

/* Company Info */
.company-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid #ffd700 ;
    height: fit-content;
}

.company-info h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.company-info p {
    margin-bottom: 1rem;
    font-size: 1.rem;
    color: #495057;
}

.company-info a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-info a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* SEO Content Section */
.seo-content {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.seo-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
}

.seo-content h3 {
    color: #34495e;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.seo-content p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.seo-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.seo-content li {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.seo-content strong {
    color: #2c3e50;
}


/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .seo-header {
        padding: 2rem 1rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
    
    .company-info {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .seo-content {
        padding: 1.5rem;
    }
    
    .cta-section .btn {
        display: block;
        margin: 0.5rem auto;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .seo-header {
        padding: 1.5rem 1rem;
    }
    
    .about-content {
        padding: 1rem;
    }
    
    .company-info {
        padding: 1rem;
    }
    
    .seo-content {
        padding: 1rem;
    }
}
