.services-page .page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('../assets/images/services-hero.jpg');
    background-size: cover;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
    align-items: center;
}

.service-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-content ul {
    margin: 2rem 0;
    list-style: none;
}

.service-content ul li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-content ul li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
} 