body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

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

.footer-bio {
    max-width: 300px;
    margin-bottom: 20px;
}

.footer-contact, .footer-social {
    margin-bottom: 20px;
}

.footer-contact h3, .footer-social h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.footer-contact p, .footer-social p {
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

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

    .footer-bio, .footer-contact, .footer-social {
        text-align: center;
    }
}
