/* Footer Section */
.footer-section {
    background-color: #F5F5F5;
    color: #080808;
    padding: 3.125rem 0 1.5625rem;
    position: relative;
}

.footer-logo img {
    width: 11.5rem;
}

/* Footer Content */
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.875rem;
    margin-bottom: 1.875rem;
    flex-wrap: nowrap;
}

/* Left Side - Logo */
.footer-left {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.3125rem;
}

.footer-logo-icon {
    width: 3.125rem;
    height: 3.125rem;
    background-color: #9ECFB2;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #080808;
}

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

/* Middle - Links in One Row */
.footer-middle {
    display: flex;
    align-items: center;
    gap: 1.875rem;
    flex: 0 0 auto;
    white-space: nowrap;
}

.footer-link {
    color: #54595F;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: #080808;
}

/* Right Side - Social Icons */
.footer-right {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 2.8125rem;
    height: 2.8125rem;
    background-color: #080808;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: #9ECFB2;
    color: #080808;
    transform: translateY(-0.1875rem);
}

.footer-social-link i {
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.25rem 0 0;
    border-top: 0.0625rem solid #E0E0E0;
    text-align: center;
    margin-top: 0;
}

.footer-copyright {
    color: #999999;
    font-size: 0.875rem;
    margin: 0;
    font-weight: 400;
}

@media screen and (max-width: 550px) {
    .footer-content {
        flex-wrap: wrap;
    }

    .footer-section {
        padding: 2.125rem 0 1.5625rem;
    }

    .footer-link {
        font-size: 1.2375rem;
    }
}