footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    border-top: 1px solid #E2E5E2; /* stroke_R5GR7R */
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 27px;
}

.footer-links a {
    text-decoration: none;
    color: #3F473E; /* fill_Y459DQ */
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    padding: 8px 12px;
    border-radius: 6px;
}

.footer-links ul li a.current-page {
    background-color: #F9FFC7; /* Active background color */
    color: #353B34; /* Active text color */
}

.footer-copyright p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4285714285714286em;
    color: #606D5F; /* fill_53OS6S */
    margin: 0;
}

/* Media Queries */
@media (max-width: 1280px) {
    footer {
        gap: 40px;

    }

    .footer-content-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        display: none; /* Hide navigation links */
    }
}

@media (max-width: 768px) {
    footer {
        gap: 30px;
    }

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