footer {
    background-color: #f0ffff;
    padding: 20px;
    margin-top: auto;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    margin-right: 20px;
}

.footer-logo-img {
    max-width: 250px;
    height: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
    font-size: 1.5rem;
    text-align: center;
}

.footer-links p {
    margin: 0;
}

.footer-links a {
    color: #6EC8F0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4DA6D6;
}

.footer-section {
    text-align: center;
}

.contact-info {
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
}

.contact-info p {
    margin: 5px 0;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.social-icon {
    width: 50px;
    height: 50px;
    margin: 0 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}