footer {
    background-color: #fbfbfb;
    padding: 40px 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #ddd;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1800px;
    margin: 0 auto;
    gap: 20px;
}

.footer-logo {
    flex: 1 1 200px;
    text-align: center;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 10px;
}

.footer-section {
    flex: 1 1 400px;
    min-width: 300px;
    padding: 10px;
}

.footer-section h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-section p, 
.footer-section a {
    font-size: 1em;
    color: #555;
    margin: 8px 0;
    text-decoration: none;
}

.footer-section a:hover {
    color: #007BFF;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.footer-socials a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background-color: #007BFF;
    color: #fff;
    text-align: center;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.footer-socials a:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        flex: 1 1 50px;
        }
    .footer-section {
        flex: 1 1 200px;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3 {
        border: none;
    }

    .footer-bottom {
        font-size: 0.8em;
    }
}
