footer {
    background-color: #1d1d1d;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    width: 95%;
    margin: auto;
    padding: 15px;
}
.footer-logo{
    margin-top: 10px;
}

.footer-logo img {
    width: 80px;
    margin-bottom: 10px;
}

.footer-logo h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links, .footer-contact, .footer-social, .footer-map {
    text-align: left;
    margin: 10px auto;
}

.footer-links h4, .footer-contact h4, .footer-social h4, .footer-map h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.footer-links ul li {
    margin-bottom: 5px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    opacity: 1;
}
.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.footer-contact p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1px;
}
.footer-contact a{
    text-decoration: none;
    color: #93cbeb
}
.mail{
    text-align: center;
}
.num{
    display: flex;
    gap: 10px;
}
.footer-social a {
    font-size: 1.5rem;
    margin-right: 20px;
    color: #fff;
    opacity: 0.9;
    transition: 0.3s;
}
.whatsapp:hover{
    opacity: 1;
    color: #06b039;
}
.facebook:hover {
    opacity: 1;
    color: rgb(1, 101, 225);
}
.insta:hover{
    opacity: 1;
    color: rgb(225, 48, 108);
}
.linkedin:hover{
    opacity: 1;
    color: rgb(10, 102, 194);
}
.youtube:hover{
    opacity: 1;
    color: rgb(255, 0, 0);
}
.footer-map iframe{
    max-width: 350px;
    height: 200px;
    border-radius: 10px;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .footer-logo{
        margin: auto;
    }

    .footer-links, .footer-contact, .footer-map {
        text-align: center;
        
    }
     
    .footer-social{
        text-align: center;
    }
    .footer-social a {
        font-size: 1.8rem;
    }
    .footer-map{
        width: 100%;
        padding: 10px 0;
    }
    .footer-map iframe{
        width: 100%;
        height: 200px;
    }
}