/*FOOTER*/

footer {
    background-color: #3c3939;
    padding: 30px 20px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-contact h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;

}

.contact-item img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.contact-item span {
    font-size: 16px;
}

.footer-logo img {
    max-width: 150px;
}

hr {
    border-left: 2px solid #fff;
    height: 60px;
    margin: 0 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-logo {
        margin-top: 20px;
    }

    hr {
        display: none;
    }
}