.px-header-menu > nav > ul > li a {
    color: #080808;
 }
 
 /* Responsive Table Styles */
 .table-responsive-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
 }
 
 .table-responsive-wrapper table {
    width: 100%;
    /* min-width: 600px; */
    border-collapse: collapse;
    margin: 0;
    border: 1px solid #dee2e6;
 }
 
 .table-responsive-wrapper thead {
   background: #696969;
   color: #fff;
 }
 
 .table-responsive-wrapper th {
    padding: 4px 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    line-height: 18px;
    text-transform: uppercase;
 }
 
 .table-responsive-wrapper td {
    padding: 4px 4px;
    border-bottom: 1px solid #dee2e6;
    line-height: 18px;
 }
 
.table-responsive-wrapper tbody tr:nth-child(even) {
   background-color: #f8f9fa;
}

.table-responsive-wrapper tbody tr:nth-child(odd) {
   background-color: #ffffff;
}

.table-responsive-wrapper tbody tr:hover {
   background-color: #e9ecef !important;
}

.table-responsive-wrapper tbody tr:last-child td {
   border-bottom: none;
}
 
 /* Mobile Card View */
 @media (max-width: 768px) {
    .table-responsive-wrapper {
       overflow-x: visible;
    }
    
    .table-responsive-wrapper table,
    .table-responsive-wrapper thead,
    .table-responsive-wrapper tbody,
    .table-responsive-wrapper th,
    .table-responsive-wrapper td,
    .table-responsive-wrapper tr {
       display: block;
    }
    
    .table-responsive-wrapper thead tr {
       position: absolute;
       top: -9999px;
       left: -9999px;
    }

    .table-responsive-wrapper tr {
       border: 1px solid #dee2e6;
       margin-bottom: 15px;
       border-radius: 8px;
       padding: 10px;
       background-color: #fff;
       box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .table-responsive-wrapper td {
       border: none;
       position: relative;
       padding-left: 50%;
       padding-top: 10px;
       padding-bottom: 10px;
       text-align: left;
    }
    
    .table-responsive-wrapper td:before {
       content: attr(data-label);
       position: absolute;
       left: 10px;
       width: 45%;
       padding-right: 10px;
       white-space: nowrap;
       font-weight: 600;
       color: #333;
    }
 }
 
 @media (max-width: 480px) {
    .table-responsive-wrapper td {
       padding-left: 40%;
       font-size: 14px;
    }
    
    .table-responsive-wrapper td:before {
       font-size: 12px;
    }
 }
 
 /* Connection Types Table Styles */
 .connection-types-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 25px 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
 }
 
 .connection-types-table th {
    width: 33.33%;
    padding: 20px 25px;
    vertical-align: top;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-right: 1px solid #e9ecef;
    position: relative;
 }
 
 .connection-types-table th:last-child {
    border-right: none;
 }
 
 .connection-types-table th::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff3700 0%, #ff6b4a 100%);
 }
 
 .connection-types-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
 }
 
 .connection-types-table li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
 }
 
 .connection-types-table li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff3700;
    font-size: 12px;
    transition: transform 0.3s ease;
 }
 
 .connection-types-table li:hover {
    color: #ff3700;
    padding-left: 30px;
    background-color: #fff5f3;
    margin-left: -10px;
    padding-left: 35px;
    border-radius: 4px;
 }
 
 .connection-types-table li:hover::before {
    transform: translateX(5px);
    color: #ff6b4a;
 }
 
 .connection-types-table li:last-child {
    border-bottom: none;
 }
 
 .connection-types-table tbody tr:hover th {
    background: linear-gradient(135deg, #fff5f3 0%, #ffffff 100%);
 }
 
 /* Responsive Design for Connection Types Table */
 @media (max-width: 992px) {
    .connection-types-table th {
       width: 50%;
       display: inline-block;
       border-right: 1px solid #e9ecef;
       border-bottom: 1px solid #e9ecef;
    }
    
    .connection-types-table th:nth-child(2) {
       border-right: none;
    }
    
    .connection-types-table th:last-child {
       width: 100%;
       border-right: none;
       border-bottom: none;
    }
 }
 
 @media (max-width: 768px) {
    .connection-types-table {
       border-radius: 6px;
       box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    }
    
    .connection-types-table th {
       width: 100%;
       display: block;
       border-right: none;
       border-bottom: 1px solid #e9ecef;
       padding: 18px 20px;
    }
    
    .connection-types-table th:last-child {
       border-bottom: none;
    }
    
    .connection-types-table th::before {
       height: 2px;
    }
    
    .connection-types-table li {
       padding: 10px 0;
       padding-left: 22px;
       font-size: 14px;
    }
 }



 .px-pd-2-title {
   font-size: 63px;
   word-spacing: 10px;
   font-weight: 700;
   line-height: 1;
   letter-spacing: -1px;
   color: #0e1f52;
 }

 .px-pd-2-overview-wrap ul li:not(:last-of-type) {
   border-bottom: none;
}
.px-pd-2-overview-wrap ul li {
      font-size: 16px;
   font-weight: 400;
   margin-bottom: 0;
   padding-bottom: 0;
}

.px-pd-2-overview-wrap p {
   margin-bottom: 7px;
}

.px-pd-2-overview-title {
   letter-spacing: -1px;
}

.px-pd-2-overview-ptb > .container:first-of-type {
   padding: 2em;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
