/* Footer Styles */
.footer {
    background-color: #5b3df5;
}

.footer-illustration {
    background: white;
    padding: 60px 0 40px;
    margin: 0;
    display: flex;
    justify-content: center;
}

.footer-illustration-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-illustration img:first-child {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
}

.footer-logo-under-illustration {
    height: 48px;
    width: auto;
    display: block;
}

.footer-main {
    background-color: #5b3df5;
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    margin-bottom: 16px;
    color: white;
    font-family: 'Lexend', sans-serif;
}

.footer-column h5 {
    margin-top: 24px;
    margin-bottom: 8px;
    color: white;
    font-family: 'Lexend', sans-serif;
}

.footer-address {
    color: white;
    margin: 0;
}

.footer-subsection {
    margin-top: 24px;
}

.footer-link {
    color: white;
    text-decoration: underline;
    transition: opacity 0.3s ease;
    display: block;
}

.footer-link:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-logo-section {
        padding: 30px 0;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
}

