footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 10%;
    background-color: #013328;
    border-top: 1px solid #ddd;
}

footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .footer-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

footer .footer-links a:hover, footer .footer-nav a:hover {
    color: #CC8B65;
}

footer .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the content horizontally */
    text-align: center; /* Center the text */
}

footer .footer-nav .menus {
    display: flex;
    gap: 30px;
    justify-content: center; /* Center the menu items */
}

footer .footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

footer .footer-nav p {
    color: white;
    font-size: 16px;
    width: 60%;
    text-align: center;
}

footer .logo {
    display: flex;
    align-items: center;
}

footer .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

footer .logo img {
    height: 40px;
    margin-right: 10px;
}

footer .logo h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    color: white;
    margin-right: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-links,
    footer .footer-nav {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    footer .footer-nav {
        margin-top: 20px;
    }

    footer .footer-links a, footer .footer-nav a, footer .footer-nav p {
        font-size: 14px;
    }

    footer .footer-nav p {
        width: 100%;
        margin-top: 40px;
    }

    footer .logo {
        margin-top: 20px;
    }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    footer {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-links,
    footer .footer-nav {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    footer .footer-nav {
        margin-top: 20px;
    }

    footer .footer-links a, footer .footer-nav a, footer .footer-nav p {
        font-size: 15px;
    }

    footer .footer-nav p {
        width: 100%;
        margin-top: 40px;
    }

    footer .logo {
        margin-top: 20px;
    }
}