/* Footer menu wrapper */
.ca-footer-menu-wrapper {
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

/* The  list */
.ca-footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

/* Each menu item */
.ca-footer-nav li {
    margin: 0;
}

/* Menu links */
.ca-footer-nav a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

/* Hover state */
.ca-footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
}