/* SEO Optimization CSS - Simplified Version */

/* AI-friendly content sections */
.ai-faq-section,
.company-info-section,
.services-detail-section,
.project-portfolio-section,
.contact-info-section {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ff7f00;
}

.ai-faq-section h2,
.company-info-section h2,
.services-detail-section h2,
.project-portfolio-section h2,
.contact-info-section h2 {
    color: #ff7f00;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* FAQ Section */
.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-question {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

/* Company Info Section */
.company-details {
    display: grid;
    gap: 0.8rem;
}

.info-item {
    padding: 0.8rem;
    background: white;
    border-radius: 4px;
    border-left: 3px solid #ff7f00;
}

.info-item strong {
    color: #ff7f00;
    font-weight: 600;
}

/* Services Detail Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
}

.service-item h3 {
    color: #ff7f00;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    color: #ff7f00;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Semantic markup styles */
.company-name {
    color: #ff7f00;
    font-weight: 600;
}

.service-type {
    color: #007bff;
    font-weight: 500;
}

.location {
    color: #28a745;
    font-weight: 500;
}

.year {
    color: #6c757d;
    font-weight: 500;
}

/* Content sections */
.content-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.content-section h2 {
    color: #ff7f00;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-section h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .ai-faq-section,
    .company-info-section,
    .services-detail-section,
    .project-portfolio-section,
    .contact-info-section {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}
