

/* Bottom section container */
.bottomSec {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Tab holder styling - increased width */
.itabHolder {
    flex: 2;  /* Takes 2x space of newsHolder */
    min-width: 0;
    width: 60%; /* Fallback for browsers not supporting flex */
}

/* Tab navigation */
.itabsNames {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
}

.itabsNames li {
    flex: 1;
    text-align: center;
}

/* Tab content - wider columns */
.itabCont .points {
    columns: 2;
    column-gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.itabCont .points li {
    break-inside: avoid;
    margin-bottom: 12px;
    margin-left: 15px;
     padding-left: 15px; /* Slightly increased spacing */
}

/* News holder styling - reduced width */
.newsHolder {
    flex: 1;  /* Takes 1x space (half of itabHolder) */
    min-width: 200px; /* Prevent too narrow on large screens */
    box-sizing: border-box;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .bottomSec {
        flex-direction: column;
    }
    
    .newsHolder, .itabHolder {
        width: 100% !important;
        flex: 1 1 100%; /* Full width on smaller screens */
    }
    
    .itabCont .points {
        columns: 1;
        column-gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .itabsNames {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .itabsNames li {
        flex: 0 0 calc(50% - 5px);
    }
       #clientList {
        text-align: center !important;
    }
    
    #clientList img {
        padding-left: 0 !important;
        max-width: 110px !important;
        height: 80 !important;
    }
}

@media screen and (max-width: 480px) {
    .itabsNames li {
        flex: 0 0 100%;
    }
}




    .footer {
        padding: 20px 15px;
        height: auto;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap; /* Allows items to wrap onto the next line */
        max-width: 1400px;
        margin: 0 auto;
    }
    .footer-left {
        flex: 1;
        text-align: left;
        padding-right: 20px;
    }
    .footer-right {
        flex: 1;
        text-align: right;
        padding-left: 20px;
    }
    /* Responsive styles for tablet and mobile */
    @media screen and (max-width: 768px) {
        .footer-content {
            flex-direction: column; /* Stack the items vertically */
            align-items: center;
        }
        .footer-left,
        .footer-right {
            width: 100%;
            text-align: center; /* Center text for mobile view */
            padding: 10px 0;
        }
        .footer-left {
            margin-bottom: 15px; /* Add space between the stacked blocks */
        }
    }
