#services-image {
    background-image: url('../assets/guitar.jpg');
}

.services-container {
    background-color: #000000;
    color: white;
    padding-left: 80px;
    padding-right: 80px;
    box-sizing: border-box;
}

.services-container h2 {
    font-size: 42px;
    line-height: 63px;
    font-weight: 400;
}

.services-container p {
    font-size: 16px;
    line-height: 24px;
}

.service-section {
    display: flex;
    flex-wrap: wrap;
    padding-top: 50px;
}

.service-section > * {
    padding-inline-start: 1.5rem;
    padding-inline-end: 1.5rem;
}

.service-image {
    width: 50%;
    flex: 0 0 auto;
    height: auto;
    max-height: 698px;
    object-fit: cover;
    box-sizing: border-box; 
}

.service-text {
    width: 50%;
    flex: 0 0 auto;
    padding: 15px 48px;
    box-sizing: border-box;
}

.bottom {
    padding-bottom: 50px;
}

@media (max-width: 1024px) {
    .service-section {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
    }

    .service-text {
        width: 100%;
    }

    .reverse {
        flex-direction: column-reverse;
    }
}

@media (max-width: 550px) {
    .services-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}