.service-layout {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    background-color: #f8f8f8;
    padding: 20px;
    box-sizing: border-box;
}
.service-content {
    flex-grow: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    width: 100%;
}
.service-tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    min-width: 300px;
    width: 100%;
    height: auto;
    background-color: inherit;
}
.tab {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    line-height: 35px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: transparent;
    color: #272727;
}
.tab.active {
    background-color: #006be8;
    color: #ffffff;
}
.service-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    height: auto;
    padding: 20px;
    flex-wrap: wrap;
}
.service-column {
    display: flex;
    flex-direction: column;
    max-width: 334px;
    gap: 20px;
}
.small-column {
    height: max-content;
}
.withimage{
    display: flex;
     flex-direction:column;
}
.service-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.service-item img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.service-item a {
    font-size: 18px;
    font-weight: 500;
    line-height: 35px;
    margin: 0;
    color: #000000;
}
.service-item a:hover {
    color: #006be8;
    text-decoration: underline;
}
.service-image {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}
.service-image img {
    width: 100%;
    max-width: 571px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}
@media (max-width: 1024px) {
    .service-layout {
        flex-direction: column;
    }

}
@media (max-width: 768px) {
    .service-list {
        flex-direction: column;
        min-width: auto;
    }
.service-column {
    max-width: 100%;
}

.service-tabs {
    flex-direction: column;
    align-items: center;
}
}

@media (max-width: 480px) {
.tab {
    font-size: 16px;
    padding: 10px 15px;
}

.service-item p {
    font-size: 16px;
}
}
