.services-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    padding: 5rem 0;
    text-align: center;
    color: #fff;
}

.services-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.services-section {
    padding: 5rem 0;
}

.service-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-content ul {
    list-style: none;
}

.service-content ul li {
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-header h1 {
        font-size: 2.5rem;
    }
}

