body {
    margin: 0;
    padding: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    background-color: #333;
    color: white;
    padding: 20px;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-left h3,
.footer-right h3 {
    border-bottom: 1px solid white;
}

.footer-left p,
.footer-right a {
    color: white;
    text-decoration: none;
}

.footer-right a {
    display: block;
    margin-top: 5px;
}