footer {
    position: relative;
    height: 90vh;
    padding: 40px;
    background-color: #FCFBFC;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.footer-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 15px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-logo img {
    max-height: 90px;
    width: auto;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #457B9D;
    max-width: 60%;
    text-align: right;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-nav {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    color: #457B9D;
    text-decoration: none;
    font-weight: 500;
    font-size: 50px;
    position: relative;
    transition: all 0.3s ease;
}

.footer-link::after {
    content: '';
    position: relative;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #457B9D;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #457B9D;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-contact {
    font-family: 'Inter', sans-serif;
    text-align: right;
    color: #457B9D;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.5;
    padding-top: 200px;
}

.footer-contact a {
    text-decoration: none;
    color: #457B9D;
}

.footer-contact a:visited {
    color: #457B9D;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: #457B9D;
    font-size: 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    footer {
        height: auto;
        padding: 30px;
        border-radius: 40px;
    }

    .footer-content {
        height: auto;
    }

    .footer-top, .footer-bottom {
        flex-direction: column;
        align-items: left;
    }

    .footer-text, .footer-contact {
        max-width: 100%;
        text-align: left;
        margin-top: 20px;
    }

    .footer-nav {
        align-items: left;
        gap: 15px;
    }

    .footer-link {
        font-size: 30px;
    }

    .footer-contact {
        padding-top: 30px;
    }

    .footer-copyright {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 20px;
        border-radius: 20px;
    }

    .footer-logo img {
        max-height: 60px;
    }

    .footer-text {
        font-size: 16px;
    }

    .footer-link {
        font-size: 24px;
    }

    .footer-contact {
        font-size: 16px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}