 
.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    padding: 20px;
    min-width: 280px;
}

.footer-logo {
    max-width: 46px;
    margin-bottom: 15px;
    border-radius: 14px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    line-height: 1.6;
        color: #989898;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #f39c12;
}

.social-media a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #f39c12;
}

.footer-section .fas,
.footer-section .fab {
    margin-right: 10px;
    color: #f39c12;
}

.footer > img {
    position: relative; 
        width: 100%;
    max-width: 650px;
    
} 