/* Baslayout */
.services-list {
    padding: 4rem 2rem;
}

@media only screen and (max-width: 767px) {
    .services-list {
        padding: 1.125rem;
    }
}

.service-description {
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Service Item */
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F4F2EB;
    border-radius: 12px;
    padding: 2rem 5rem;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse; /* Alternera riktning för varje andra kort */
}

@media (max-width: 992px) {
    .service-item {
        flex-direction: column-reverse;
        padding: 1.5rem 1.5rem;
    }

    .service-item:nth-child(even) {
        flex-direction: column-reverse; /* Alternera riktning för varje andra kort */
    }
}

.service-content {
    flex: 1;
    width: 100%;
    padding-right: 1.5rem;
}

.service-title {
    color: #3C393C;
    font-family: "Serifa", sans-serif;
    margin-bottom: 20px;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

@media (max-width: 992px) {
    .service-title {
        font-size: 30px;
    }
}


.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
    margin-bottom: 2rem;
}

.attribute-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.service-buttons {
    display: flex;
    gap: 1rem;
}

/* Bild */

.service-image {
    flex: 1;
    text-align: center;
}

.attribute-item .value {
    text-align: right;
}

.service-image img {
    max-width: 140px;
    height: auto;
    object-fit: cover;
    border: 5px solid #F4F2EB;
}
