* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        header {
            background: #333;
            color: white;
            text-align: center;
			        
        }

		footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 15px;
        }
        .container {
            display: flex;
            flex: 1;
            flex-wrap: wrap;
        }
        .sidebar {
            flex: 1 1 30%;
            background: #ddd;
            padding: 20px;
        }
        .content {
            flex: 1 1 35%;
            padding: 40px;
            background: #F6D783;
			text-decoration: none;
			color: #333;
        }
		.content ul a{
			text-decoration: none;
			color: #000;
			font-family: Arial, sans-serif;
            font-size: 20px;
        }
		.content2 {
            flex: 1 1 35%;
            padding: 40px;
            background: #F6D783;
			text-decoration: none;
			color: #333;
        }
		.content2 ul a{
			text-decoration: none;
			color: #000;
			font-family: Arial, sans-serif;
            font-size: 20px;
        }
		
		
        .menu ul {
            list-style: none;
        }
		.menu ul a{
			text-decoration: none;
			color: #fff;
        }
        .menu ul li {
            padding: 10px;
            background: #555;
            color: white;
            margin-bottom: 5px;
            cursor: pointer;
        }
        .menu ul li:hover {
            background: #777;
        }
        .submenu {
            display: none;
            padding-left: 15px;
        }
        .menu ul li:hover .submenu {
            display: block;
        }
        footer {
            position: relative;
            width: 100%;
        }

		
	
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            .content, .sidebar {
                flex: 1 1 100%;
            }
			.image {
                width: 100%;
				
			
            }
			

        }
