body{
    background-color: #F4F4F4;
}
.services-header {
    background-image: url('services-banner.jpg'); /* Replace with your banner image URL */
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.services-header h1 {
    font-size: 3rem;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 10px;
}
.services-content {
    max-width: 90%;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.service-item {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}
.service-item h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.service-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}
.service-item img {
    max-width: 45%;
    height: 50vh;
    border-radius: 10%;
    margin-bottom: 20px;
    padding: 2%;
}

@media (max-width: 500px) {
    .service-item{
        flex-direction: column;
    }
    .flip{
        flex-direction: column-reverse;
    }
    img {
        height: 50vh;
        width: auto;
    }
}