footer {
    background-color: #0f0f0f;
    color: #fff;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-column h3 {
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column ul,
.footer-column a {
    color: #ccc;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 10px;
}

@media (max-width: 991px) {
    footer {
        padding-bottom: 50px !important;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        width: 100%;
        margin: 15px 0;
    }

    .footer-column h3 {
        display: inline-block;
        border-bottom: 2px solid #C5A059;
        padding-bottom: 5px;
    }
}