.footer {
    background-color: #1D1A28;
    color: white;
    padding: 40px 100px;
    font-family: 'Fira Sans', sans-serif;
    z-index: 50;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 15px;
}

.logos {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-left: 80px;
}

.logo img {
    height: 170px;
}

.footer-content {
    max-width: 50%;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin-top: -40px;
}

.footer-content h2 {
    font-family: 'Antonio', sans-serif;
    font-size: 42px;
    margin-bottom: 15px;
}

.footer-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.copyright {
    font-size: 14px;
    opacity: 0.8;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.footer-heading {
    font-family: 'Antonio', sans-serif;
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 9%;
    font-family: 'Antonio', sans-serif;
    width: 100%;
}

.contact-person {
    flex: 1;
}

.contact-person h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: lighter;
}

.contact-info i {
    width: 24px;
    margin-right: 10px;
    color: #B480EE;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.635);
    text-decoration: none;
    font-size: 14px;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .footer {
        padding: 40px 50px;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .contact-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .logos {
        flex-direction: column;
    }
    
    .contact-person {
        min-width: 100%;
    }
}