<style type="text/css">

/*index_body_php*/ 



/*/////////////////////////////////english site - index.php /////////////////////////////////*/

.body1{
    background: linear-gradient(to bottom, #f6fafb 0%, #add9e4 100%);
    
}
.table1_indexphp{
    width: 80%; 
    background-color: #F2F8FA;
    margin-left: auto; 
    margin-right: auto;
    height: 100%; 
    box-shadow: 5px 14px 25px 10px #b8b8b8;
}
.table1_indexphp_td1{
    width: 1%;
}
.table1_indexphp_td2{
    width: 98%; 
    vertical-align: top;
}


.table2_indexphp{
    width: 100%;
}
.table2_indexphp_tr1{
    background: linear-gradient(to bottom, #f6fafb 0%, #add9e4 100%); 
}
.table2_indexphp_td1{
    width: 100%;
}
.table1_indexphp_td3{
    width: 1%;
}
.table1_indexphp_td4{
    vertical-align: bottom;
}
.table1_indexphp_td5{
    vertical-align: bottom;
}
.table1_indexphp_tr1{
    height: 1.8vw;
}











body {margin:0;font-family:Arial}



/* ======================================================== */
/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #003364;
    color: #f2f2f2;
    font-size: 0.9rem;
}

        footer a {
             color: #FFFFFF; /* Default link color */
            text-decoration: none; /* Remove underline by default */
        }
        footer a:hover {
            color: #FFFDD0; /* Darker blue for hover */
            text-decoration: underline; /* Add underline on hover */
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            padding: 10px;
        }
        h4 {
            margin-bottom: 10px;
            color: #FFE5B4; /* Heading color */
        }
        ul {
            padding: 0;
            list-style-type: none;
        }
        li {
            margin-bottom: 10px;
        }
        
        
        
           /* Header Section */
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            background-color: #003364;
            color: #f2f2f2;
        }
        header img {
            max-height: 80px;
            width: auto;
        }
        header h1 {
            font-size: 5.0vw;
            text-align: center;
            flex: 1;
        } 
        
        
  
</style>

  <style>
        /* General Body Styles */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: linear-gradient(to bottom, #f6fafb 0%, #add9e4 100%);
        }

        /* Header Section */
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            background-color: #005eb8;
            color: #f2f2f2;
        }
        header img {
            max-height: 80px;
            width: auto;
        }
        header h1 {
            font-size: 1.5rem;
            text-align: center;
            flex: 1;
        }

        /* Navigation Bar */
        .topnav {
            display: flex;
            flex-wrap: wrap;
            background-color: #005eb8;
            padding: 0.5rem;
        }
        .topnav a, .topnav button {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            background: none;
        }
        .topnav a:hover, .topnav button:hover {
            background-color: #014F9A;
        }
        .dropdown {
            position: relative;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 160px;
            z-index: 1;
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }
        .dropdown-content a {
            color: black;
            padding: 0.5rem;
            text-decoration: none;
            display: block;
        }
        .dropdown-content a:hover {
            background-color: #ddd;
        }

        /* Responsive Navigation */
        @media (max-width: 768px) {
            .new_topnav {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* Main Content Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 3fr 1fr;
            gap: 1rem;
            padding: 1rem;
        }
        .content-grid > div {
            padding: 1rem;
            background: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        .content-grid img {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }

        /* Footer Section */
        footer {
            background-color: #005eb8;
            color: #f2f2f2;
            text-align: center;
            padding: 1rem;
        }
        footer .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        footer .footer-section {
            flex: 1;
            min-width: 250px;
        }
        footer a {
            color: #f2f2f2;
            text-decoration: none;
        }
        footer a:hover {
            color: #ddd;
        }

        /* Responsive Content */
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        


.content-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; /* Maintain 4 columns */
    gap: 1rem;
    padding: 1rem;
    width: 80vw; /* Limit width to 80% of the page */
    margin: 0 auto; /* Center the grid */
}


.content-grid2 > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content to the bottom */
    padding: 1rem;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.content-grid2 img {
    width: 80%;  /* Reduce the width of the images */
    height: auto;
    border-radius: 5px;
    margin: 0 auto; /* Center the images horizontally */
}

.content-grid2 p {
    text-align: center;
    font-size: 1rem; /* Adjust font size if needed */
    margin-top: 0.5rem;
}

        

        
        /* Adjustments for small screens */
@media (max-width: 768px) {
    .content-grid2 {
        grid-template-columns: 1fr; /* Switch to 1 column */
    }
    .content-grid2 img {
        width: 80%; /* Make images a bit smaller on small screens */
    }
}
    </style>
    
    