footer {
    background-color: rgb(234, 175, 49);
    color: #fff;
    padding: 32px 24px 10px;
    width: 100%;
    margin-top: 0;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-brand,
.footer-contact,
.footer-social {
    flex: 1;
    min-width: 220px;
}

.footer-content h3,
.footer-content h4 {
    margin: 0 0 12px;
}

.footer-content p {
    margin: 0 0 8px;
    line-height: 1.5;
}

.footer-contact a,
.footer-social a {
    color: #fff;
    text-decoration: none;
}

.footer-contact a:hover,
.footer-social a:hover {
    text-decoration: underline;
}

#socials {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    padding: 0;
    margin: 10px 0 0;
}

.socials a {
    color: white;
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 24px;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.footer-credit-label {
    font-weight: 600;
}

.footer-credit-logo {
    height: 38px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    footer {
        padding: 24px 16px 10px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}
