.footer {
    background-color: #f8f8f8;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    border-top: 1px solid #ddd;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: auto;
}

.footer-brand {
    flex: 1;
    text-align: left;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: left;
    gap: 10px;
}

.footer-brand .logo img {
    width: 60px;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-brand p {
    margin: 10px;
    font-size: 0.9rem;
    color: #666;
}

.footer-links {
    flex: 3;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    min-width: 150px;
    text-align: left;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #000;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 2px;
    margin: 10px;
    transition: all 0.3s ease;
}

.footer-social:hover {
    transform: scale(1.2);
}

.footer-social i {
    font-size: 18px;
    color: #000000;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
    }
}