.page-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--color-dark);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?w=1400&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.service-row {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 5%;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-img {
    width: 45%;
    border-radius: 8px;
}

.service-content {
    width: 50%;
}

@media (max-width: 900px) {
    .service-row, .service-row.reverse {
        flex-direction: column;
        text-align: center;
    }
    .service-img, .service-content {
        width: 100%;
    }
    .service-content {
        margin-top: 40px;
    }
}
