/* This is the CSS for the footer */ footer { background-color: #333; /* Use the actual color code from the website */ color: white; padding: 20px; text-align: center; } footer section { margin-bottom: 20px; } footer h4 { text-transform: uppercase; margin-bottom: 10px; } footer ul { list-style: none; padding: 0; } footer ul li a { color: white; text-decoration: none; transition: color 0.3s; } footer ul li a:hover { color: #f0f0f0; /* Adjust the color as needed */ }