 style>
        body{
            background-color: rgb(255, 255, 255);
        }
        a{
            text-decoration: none;
        }
        #container{
            min-height: 500px;
            margin: 10px auto;
             }
        #menu{
           background-color:rgb(44, 42, 42) ;
           min-height: 70px;
        }
        #header{
            background-color: rgb(44, 42, 42);
            min-height: 300px;
        }
        #content{
            background-color: rgb(255, 253, 253);
            min-height: 700px;
            font-family: Arial, Helvetica, sans-serif;
            color:rgb(114, 111, 111) ;
            padding: 50px;
        }
        li{
            display: inline-block;
            width: 130px;
            font-weight: bold;
            color: rgb(255, 255, 255);
        }
        li:hover{
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }
        #content .dataitems {
            margin-top: 15px;
            border-bottom-style: inset ;
        }
        #content .dataitems .item{
            width: 250px;
            height: 350px;
            background-color: rgb(255, 255, 255);
            margin: 10px;
            display: inline-block;
            float: center;
        }
        #content .dataitems .item:hover{
            transform: -1px;
            box-shadow: 0 3px 7px;
        }
        #header .banner img{
            width: 100%;
        }
        #footer{
            padding: 50px;
            background-color: rgb(44, 42, 42);
            color: white;
            font-family: Arial, Helvetica, sans-serif;
            max-height: 500px;
        }
        .footer-main {
            padding: 30px 20px;
            color: white;
        }
        
        .footer-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #ffbc0d;
            margin-bottom: 15px;
            font-size: 20px;
            border-bottom: 1px solid #444;
            padding-bottom: 8px;
        }
        .footer-column li{
            width: 300px;
            padding-bottom: 10px;
            display: flex;
            transform: none;
        }
        .language-selector select {
            background-color: #333;
            color: white;
            border: 1px solid #555;
            padding: 5px 10px;
            border-radius: 4px;
        }
        i{
            margin-right: 10px;
            font-size: 28px;
        }
         