/* Services specific styles */
.services {
    padding: 4rem 0;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

/* Service Card styles */
.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 2rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    width: 48px;
    height: 48px;
}

.service-content {
    padding: 1rem;
}

.service-content h4 {
    margin-top: 0;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-content ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
}

.pricing-info {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 5px;
}

.pricing-info p {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Case Studies styles */
.case-studies {
    padding: 4rem 0;
    background: #f8fafc;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.case-study-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}

.case-study-header {
    padding: 2rem;
    background: #2563eb;
    color: white;
}

.case-study-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.industry-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    font-size: 0.875rem;
}

.case-study-content {
    padding: 2rem;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.stat {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

.case-study-content h4 {
    color: #1e40af;
    margin: 1.5rem 0 0.75rem;
}

.case-study-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.case-study-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.case-study-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
}

/* FAQ styles */
.faq-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}