body {
    background-image: url('../img/laptop med stad.jpeg');
}

/* Tjänster */
.services-container {
    display: flex;
    justify-content: space-evenly;
    margin-top: 400px;
    flex-wrap: wrap; /* Gör det responsivt */
    padding: 20px;
    opacity: 0.8;
}

.service-box {
    width: 300px;
    background-color: rgb(51, 51, 51, 0.9);
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-title {
    font-size: 24px;
    color: #fff;
    background: whitesmoke;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-description {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

/* Responsiv design för små skärmar */
@media screen and (max-width: 866px) {
    .service-box {
        width: 90%;
        margin: 10px auto;
    }
}

@media screen and (max-width: 768px) {
    .service-row {
        flex-direction: column;
        text-align: center;
    }

    .service-text, .service-image {
        width: 100%;
    }
    .service-description .service-row {
        max-width: 80%; /* Gör boxarna mindre på mindre skärmar */
        padding: 8px; /* Minska padding på små skärmar */
    }
}

@media screen and (max-width: 491px) {
    .service-box {
        width: 100%;
    }
}