
.custom-tabs-wrapper {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    height: 480px;
}

.tabs-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    max-height: 70vh;
    overflow-y: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 400px;
}

.tab-link {
    display: flex;
    padding: 5px 20px 5px 5px;
    align-items: center;
    gap: 15px;
    align-self: stretch;
    border-radius: 10px 10px 10px 35px;
    background: #FFF;
    cursor: pointer;
    position: relative;

    /* Card DS */
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.06);
}

.tab-link.active {
    border-radius: 10px 10px 10px 35px;
    background: #40865C;
    color: #FFF;

    /* Card DS */
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.06);
}


.tab-link .tab-title{
    color: #000;
    font-family: 'Corporative', sans-serif !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 35px; /* 194.444% */
}


.tab-link .tab-icon{
    display: inline-block;
}

.tab-link .tab-icon-active{
    display: none;
}


.tab-link.active .tab-icon{
    display: none;
}

.tab-link.active .tab-icon-active{
    display: inline-block;
}


.tab-link.active .tab-title{
    color: #FFF;
}

.tab-link .tab-arrow{
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 26px;
}


.tab-link.active .tab-arrow svg path{
    fill: #fff;
}


.tab-contents{
    display: flex;
    width: 550px;
    min-height: 410px;
    padding: 50px 50px 50px 75px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 20px 20px 75px 20px;
    border: 1px solid #BDCEC4;
    background: #EAF0EC;
    position: absolute;
    top: 35px;
    right: 0;
    z-index: 0;
}

.tab-content {
    display: none;
    padding: 20px;
    border: none;
    background: transparent;
    flex: 1 1 auto;
    width: 100%;
    text-align: center;
}

.tab-content.active {
    display: block;
}


.tab-content h4{
    color: #40865C;
    text-align: center;
    font-family: 'Corporative', sans-serif !important;
    font-size: 25px;
    font-style: normal;
    font-weight: 800;
    line-height: 35px; /* 140% */
}


.tab-content img{
    width: 125px;
    margin: 0 auto;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 768px) {
    .custom-tabs-wrapper {
        flex-direction: column;
    }
    .tabs-nav {
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .tab-link {
        white-space: nowrap;
    }
}