.footer-inner {
    background: #0f8f73;
}

.footer-container {
    color: #fff;
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    padding: 47px 20px;
}

.footer-left {
    width: 40%;
}

.footer-logo {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 82px;
    height: auto;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.footer-logo-text span {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
}

.contact-button {
    margin-top: 10px;
}

.footer-right {
    display: flex;
    justify-content: space-between;
    width: 60%;
}

.footer-column {
    flex: 1;
    margin: 0 10px;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 5px;
    list-style: disc;
}

.footer-bottom {
    color: #5f4210;
    font-size: 1.4rem;
    text-align: center;
}

.contact-button {
    background-color: #f6ad00;
    color: #ffffff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 14px 30px;
    border-radius: 2px;
    display: inline-block;
    font-weight: 700;
}

@media (max-width: 768px) {
    .footer-container {
        display: block;
        padding: 40px;
    }

    .footer-left {
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-logo {
        justify-content: center;
        text-align: left;
    }

    .footer-right {
        width: 100%;
        display: block;
    }

    .footer-column {
        margin-bottom: 30px;
    }
}
