*{
    /* margin: 0; */
    /* padding: 0; */
    /* box-sizing: border-box; */
    font-family:'Open Sans';
}

/* complete content page */
.contain-text {
    width: 80%;
    margin: 120px auto 0;
    text-align: justify;
}

/* Back Button */

.contain-text #backButton {
    position: fixed;
    /* top: 500px;  */
    left: 20px;
    display: none; /* Hidden by default  */
    z-index: 1000; /* Ensures it stays on top of other content */
    color: #23458E;
}

/* content image */

.contain-text .about-text1 .image{
    float: right;
    width: 450px;
    height: 500px;
    margin-right: 11%;
    margin-top: 40px;
}
/* Table container */
.table-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between tables */
    justify-content: center; /* Center tables */
}
.table-container table {
    border-collapse: collapse;
    width: 200px; /* Set a width for tables */
}
.table-container th, .table-container td {
    border: 1px solid black;
    padding: 8px;
    text-align: center;
}
.table-container th {
    background-color: #FFF; 
    color: #333;
}
.table-container .header {
    background-color: #FFF;
}
/* Responsive adjustments */

/* Responsive device for desktop */
@media (min-width: 1440px) {
    .contain-text {
        width: 80%;
        margin: 120px auto 0;
        overflow-x: hidden;
    }

    .contain-text .about-text1 .image {
        width: 400px;
        height: 450px;
        margin-right: 10%;
        margin-top: 30px;
    }

    .table1 table {
        font-size: 16px;
    }
}

/* Responsive adjustments for laptop view */
@media (max-width: 1024px) {
    .contain-text {
        width: 80%;
        margin: 0 auto;
    }

    .contain-text .about-text1 .image {
        float: none;
        width: 100%;
        height: auto;
        margin: 20px 0;
    }
}

/* Responsive device for tablet */
@media (max-width: 768px) {
    .contain-text {
        width: 100%;
        margin: 100px auto;
        padding: 0 10px;
    }

    .contain-text .about-text1 .image {
        width: 100%;
        height: auto;
    }
}

/* Responsive device for mobile */
@media (max-width: 425px) {
    .contain-text {
        width: 100%;
        margin: 100px auto;
        padding: 0 5%;
    }
    /* Back Button */

    .contain-text #backButton {
        position: fixed;
        /* top: 500px;  */
        left: 20px;
        display: none; /* Hidden by default  */
        z-index: 1000; /* Ensures it stays on top of other content */
        color: #23458E;
    }
}
@media (max-width: 320px) {
    .contain-text {
        width: 100%;
        margin: 10
        0px auto;
        padding: 0 5%;
    }
}
