.service-tabs {
    display: flex;
    border-bottom: 2px solid #e4e9f0;
    margin: 30px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.service-tabs::-webkit-scrollbar {
    display: none;
}

.service-tab {
    padding: 12px 25px;
    color: #666;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
}

.service-tab:hover {
    color: #003f7d;
    text-decoration: none;
}

.service-tab.active {
    color: #003f7d;
}

.service-tab.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #003f7d;
}

.service-content:not(.active) {
    display: none;
}
