


footer {
    background: #111;
    color: white;
    padding: 40px 0 0px 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
    object-position: center;
}

.footer-section p {
    font-size: 14px;
    color: #bbb;
}
.footer-section h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}
.footer-links a {
    display: block;
    font-size: 14px;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #f2f2f2;
}

.social-icons{
    text-align: center;
    margin-top: 10px;
}
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: #bbb;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #f2f2f2;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #222;
    margin-top: 20px;
    font-size: 14px;
    color: #bbb;
}

@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
    .social-icons a {
        margin: 5px;
    }
}
