.footer {
    padding: 10px 20px 0;
    background-color: rgb(0, 0, 0);
}
.footer .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    padding: 50px 100px;
    border-bottom: 1px solid #444;
    padding-bottom: 30px;
}
.footer .footer-container .footer-about {
    flex: 1 1 300px;
}

.footer .footer-container .footer-about .logo {
    font-size: 2px;
    margin-bottom: 15px;
}

.footer .footer-container .footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: white;
}

.footer .footer-container .footer-about .social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

.footer .footer-container .footer-links {
    display: flex;
    flex: 2 1 600px;
    gap: 50px;
}

.footer .footer-container .footer-links h3 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 5px;
    color: orange;
}

.footer .footer-container .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-container .footer-links ul li {
    margin: 6px 0;
}
.footer .footer-container .footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer .footer-container .footer-links ul li a:hover {
    color: orange;
}

.footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    font-size: 15px;
    color: #ffffff;
}

.footer .footer-bottom a {
    color: #ffffff;
    margin-left: 15px;
    text-decoration: none;
}
footer .footer-container .footer-about .logo .logo-footer {
    border-radius: 300px;
    width: 110px;
    margin-bottom: 30px;
}
.logo{
    display: flex;
    gap: 36px;
}
.footer .footer-bottom a:hover {
    color: #fff;
}
@media (max-width: 768px) {
    .footer {
        padding: 0;
    }
    .footer .footer-container {
        flex-direction: column; 
        padding: 40px 20px;
        gap: 40px; 
    }
    .logo {
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 15px; 
    }
    
    img {
        width: 80px;
        margin-bottom: 10px;
    }
    .footer .footer-links {
        flex-direction: row; 
        flex-wrap: wrap; 
        gap: 30px 15px; 
        justify-content: space-between; 
    }
    
    .footer .footer-container .footer-links > div {
        flex: 1 1 45%; 
        min-width: 120px; 
    }
    .footer .footer-container .footer-about p,
    .footer .footer-container .footer-links ul li a {
        font-size: 13px;
    }
    
    .footer .footer-container .footer-links h3 {
        font-size: 13px;
    }
    .footer .footer-bottom {
        flex-direction: column;
        gap: 15px; 
        text-align: center;
        font-size: 13px; 
        padding: 15px 20px; 
    }
    
    .footer .footer-bottom .bottom-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer .footer-bottom a {
        margin: 5px 0;
    }
}