
.service-container {
    width: 100%;
    height: auto;
    /*background-color: #fbf2f2;*/
    background-color: #ffffff;
}

.service-content {
    display: flex;
    /*flex-direction: column;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    gap: 20px;
    padding: 50px 0;
    /*border: 1px solid #f1132d;*/
}


.service-item {
    flex: 1;
    background-color: #f9f9f9;
    /*border-radius: 8px;*/
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    /*border-radius: 8px;*/
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.service-item p {
    font-size: 14px;
    color: #666;
}