.footer-wrapper {
    margin-top: 50px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.footer-text {
    max-width: 400px;
}

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

.footer-divider {
    height: 10px;
    background-color: #000;
    margin: 1rem 0;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.footer-nav a {
    font-size: 16px;
    text-decoration: none;
    color: #333;
    margin-right: 2rem;
}

.footer-social a {
    margin-left: 1.5rem;
    color: #333;
    font-size: 1.5rem;
}

.footer-copyright {
    text-align: center;
    color: #9C9C9C;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .footer-wrapper {
        padding: 1rem 2rem;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
    }

    .footer-text {
        display: none;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-nav a {
        margin: 1.5rem 0rem;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .footer-social a {
        margin: 0 0.75rem;
    }
}
