.site-footer {
    background-color: #121212; /* Primary Dark Background */
    color: #F5F5F7; /* Light Grey Text */
    padding: 40px 0;
    font-size: 14px;
    text-align: left;
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    width: 30%;
    margin-bottom: 20px;
}

.footer-column h3 {
    color: #FFFFFF; /* White for Headings */
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    color: #B3B3B3; /* Secondary Text Color */
    margin-bottom: 10px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #FFFFFF; /* White Divider */
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .site-footer .container {
      flex-direction: column;
    }
    .footer-column {
      width: 100%;
      margin-bottom: 20px;
    }
}
