* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    margin: 0 auto;
    font-family: 'Roboto', Arial, sans-serif;
}

.heading-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
    
}

/* Heading */
.page-heading {
    font-size: 52px;
    text-align: center;
    padding: 80px 0 100px ;
    font-weight: 700;
    line-height: 64px;
}

.page-heading-discription {
    font-size: 22px;
    text-align: center;
    font-weight: 500;
    line-height: 28px;
    padding-top: 20px;
    color: #4374ba;
}

.full-box-container {
    max-width: 1920px;
    height: auto;
    margin: 0 auto;
    padding: 0 100px;
    
    
}

.box-header-layer {
    width: 100%;   
    border: 1px solid #808080;
    margin-top: 65px;  
        
}

.box-header-layer:first-child {
    margin-top: 0;
}

.box-header-title {
    background-color: #4D4D4D;
    color: #ffffff;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    padding: 19.5px;
    line-height: 34px;
    border: 1px solid #4D4D4D;   
}

.box-header-title-discription {
    background-color: #4D4D4D;
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    
}

.content-full-box-container {
    width: 100%;   
    background-color: #fbfeff;
    border: 1px solid #808080;  
    padding: 65px 40px 0 40px;  
        
}



.table-container {
    width: 100%;   
    padding-bottom: 65px;   
        
}



.table-header-container {
    width: 100%;   
              
}

.table-header-title {
    
    background-color: #ffffff;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    padding: 17.5px;
    line-height: 33.6px;
    border: 1px solid #808080;
    box-sizing: border-box;   
}

.table-header-title span {
    background-color: #ffffff;
    text-align: center;
    font-size: 19px;
    font-weight: 400;
    line-height: 28.8px;
    

}

.table-header-title-graybox {
    background-color: #f2f2f2;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    padding: 23.01px;
    line-height: 36px;
    border: 1px solid #808080;
    box-sizing: border-box; 
}

.table-header-sub-title {
    background-color: #ffffff;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    padding: 15.5px;
    line-height: 34px;
    border: 1px solid #4d4d4d;   
}

.table-header-sub-title-only {
    background-color: #ffffff;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    padding: 15.5px;
    line-height: 34px;
    border: 1px solid #4d4d4d;   
}

.table-header-sub-title-graybox {
    background-color: #f2f2f2;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    padding: 23.45px;
    line-height: 34px;
    border: 1px solid #4d4d4d; 
    box-sizing: border-box;   
    
}

.table-header-sub-title-graybox-br {

}

.table-grid-container {
    width: 100%;   
    display: flex;
    flex-direction: column;
    
}


.table-grid-container-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.table-grid-box {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    width: 100%;
    box-sizing: border-box;
    flex: 1;
    border: 1px solid #808080;
    background-color: #ffffff;
}

.table-grid-box-max4grid {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    width: 100%;
    box-sizing: border-box;
    flex: 1;
    border: 1px solid #808080;
    background-color: #ffffff;
}



.table-grid-box-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #808080;                 /* remove full box border */
    height: 65px;
    padding: 10px 6px;
    font-size: 19px;
    line-height: 22.8px;
    font-weight: 400;
    text-align: center;
    background-color: #fff;
    min-width: 0;
    flex: 1;
    word-break: break-word;
}

.table-grid-box-item span {
    
    text-align: center;
    font-size: 19px;
    font-weight: 400;
    line-height: 28.8px;
    
}




.sub-table-container {
    width: 100%;  
}

.sub-table-container-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: stretch;
}

.sub-table-box {
    flex: 1;
    min-width: 150px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    
}

.empty-white-box {
    height: 200px;
    background-color: #fff;
    width: 100%;
}


.paragraph-box-container {
    width: 100%;
    
}

.paragraph-box {
    background-color: #f1f1f1;
    border: 1px solid #808080;
    padding: 20px;
    font-size: 18px;
    line-height: 1.6;
    grid-column: 1 / -1; /* spans full grid width */
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.table-grid-box-item.active {
    background-color: #4d4d4d;
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
}


@media (max-width: 1200px) {
    .heading-container {
        padding: 0 50px;
    }
}

@media (max-width: 600px) {
    .heading-container {
        padding: 0 20px;
    }
}


@media (max-width: 1200px) {
    .full-box-container {
        padding: 0 50px;
    }
}

@media (max-width: 600px) {
    .full-box-container {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .sub-table-container-wrapper {
        flex-direction: column;
    }
    
    .sub-table-box {
        width: 100%;
        
    }

    .sub-table-box:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 430px) {

    .table-grid-box-item {
        border-bottom: none;
        border-right: none;
        border-left: none;
    }
    

    .table-header-title  {
        border-bottom: none; 
        
    }
    .table-header-title:first-child {
        border-bottom: 1px solid #808080;
    }



    .table-grid-box {
        border-top: none;
    }    

    .table-header-sub-title {
        border-bottom: none;
        
    }
}

@media (max-width: 1200px) {
    .table-grid-box {
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}   

@media (max-width: 1048px) {
    .break-on-small {
      display: block;
    }
}


@media (max-width: 768px) {
    .table-grid-box {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* 2 per row on tablets */
    }
}

@media (max-width: 480px) {
    .table-grid-box {
        grid-template-columns: 1fr; /* 1 per row on mobile */
    }
}

@media (max-width: 480px) {
    .table-grid-box-max4grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}









