/* Hide footer copyright */
.site-footer .copyright,
.footer .copyright,
.site-footer p.paragraph10,
.footer p.paragraph10 {
    display: none !important;
}

/* Center footer content and add right separator */
.site-footer .footer-content-wrapper,
.footer .footer-content-wrapper,
.site-footer .container,
.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    position: relative;
}

.site-footer,
.footer {
    text-align: center;
}

/* Add separator line on the right side of the centered content */
.site-footer .footer-content-wrapper::after,
.footer .footer-content-wrapper::after,
.site-footer .container::after,
.footer .container::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background-color: #ccc; /* Separator color */
    margin-left: 20px;
}
