div.container > p {
    margin-left: 15%;
    margin-right: 15%;
}

.sections {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 3% 20%;
    background-color: #fff;
}

.split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

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

.image img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

img#servicesphoto {
    border-radius: 0px;
}

h1 {
    text-align: center;
}

.text {
    flex: 1;
    min-width: 280px;
}

.text h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.text p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    div.container > p {
        margin-left: 10%;
        margin-right: 10%;
    }
    
    .sections {
        gap: 60px;
        padding: 0 0 0 0;
    }

    .split, .split.reverse {
        gap: 0px;
        flex-direction: column;
        text-align: center;
    }

    text {
        order: 2;
    }

    .text p {
        margin-bottom: 10px;
    }

    image {
        order: 1;
    }
}
