.popular_links {
    margin-left: 20px;
}

/* Ensure table container does not expand excessively */
.table-container {
    max-width: 100%;
    overflow: hidden;
    padding: 20px;
}

/* Make table scrollable only on small screens */
.table-responsive {
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
}

/* Ensure table does not stretch beyond its content */
.table-responsive table {
    width: 100%;
    border-collapse: collapse;
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    .table-responsive table {
        min-width: 600px;
        /* Ensure horizontal scrolling */
        width: auto;
    }

    .header-default .menu-area .menu-area-wrap {
        background: none !important;
    }

    .header-default .menu-area .menu-area-wrap {
        padding: 0 18px 0 0px !important;
    }

    .service-card .box-content {
        background-color: var(--white-color);
        padding: 30px 3px;
    }

    .team-card .team-img img {
        width: 100%;
        height: 135px;
    }

    .team-card .team-card-content {
        position: relative;
        padding: 142px 20px 20px;
        margin-top: -118px;
    }

}