body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 100px; /* Ensures space above the footer */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    background-color: #333;
    color: #fff;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.content {
  display: flex;
  justify-content: center;
  align-items: top;
  padding: 20px;
  min-height: calc(100vh - 40px); /* Adjust to account for header/footer */
}
footer {
    background-color: #333; /* Replace with the exact color code from web.png */
    color: #fff; /* Replace with the exact font color from web.png if different */
    padding: 10px 20px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    margin-left: 20px;
    font-size: 14px; /* Adjust as per your design */
    color: #fff; /* Replace with the exact color code from web.png */
}

.footer-right {
    margin-right: 20px;
}

.footer-right a {
    color: #fff; /* Replace with the exact link color from web.png */
    text-decoration: none;
    padding: 0 10px;
    font-size: 14px; /* Adjust as per your design */
}

@media (max-width: 600px) {
  footer {
        flex-direction: column;
    }

.footer-left, .footer-right {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    padding: 5px 0;
}

.footer-right a {
    padding: 0 5px; /* Reduced padding for smaller screens */
}
}