.tabs_nav {
    display: flex;
    width: 100%;
    align-items: center;
    border: 1.5px solid #ECCEB1;
    max-width: 450px;
    margin: 0 auto;
}

.tabs_nav .tab {
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    color: #353535;
    border-right: 1.5px solid #ECCEB1;
    padding: 12px;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs_nav .tab:last-child {
    border: none;
}

.tabs_nav .tab:hover,
.tabs_nav .tab.active {
    background-color: #ECCEB1;
}

.tab_pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab_pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab_content_box {
    text-align: center;
}

.tab_title h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #353535;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.tab_heading h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: normal;
    color: #353535;
    margin-bottom: 40px;
}

.tab_para p {
    font-size: 16px;
    line-height: 28px;
}

.tab_para ul li:last-child {
    margin-bottom: 0;
}

.tab_para h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    color: #363636;
    margin-top: 40px;
    margin-bottom: 15px;
}

.tab_para ul {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
}

.tab_para ul li {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 10px;
    list-style-type: disc;
    width: fit-content;
    text-align: left;
}

.tab_btn {
    margin-top: 80px;
}

.tab_btn a {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .tabs_nav .tab {
        padding: 10px;
    }

    .tab_title h3 {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 30px;
    }

    .tab_heading h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .tab_para p {
        line-height: 26px;
    }

    .tab_para h3 {
        font-size: 22px;
        margin-top: 30px;
    }

    .tab_para ul li {
        line-height: 24px;
        margin-bottom: 8px;
    }

    .tab_btn {
        margin-top: 60px;
    }
}

@media (max-width: 991px) {
    .tab_title h3 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 25px;
    }

    .tab_heading h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .tab_para p {
        line-height: 24px;
    }

    .tab_para h3 {
        margin-top: 20px;
    }

    .tab_para ul li {
        margin-bottom: 6px;
    }

    .tab_btn {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .tabs_nav .tab {
        font-size: 16px;
    }

    .tab_title h3 {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .tab_heading h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .tab_para p {
        font-size: 15px;
        line-height: 22px;
    }

    .tab_para h3 {
        font-size: 20px;
        margin-top: 15px;
    }

    .tab_para ul li {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 5px;
    }

    .tab_btn {
        margin-top: 20px;
    }
}