footer {
    background: #4FBFA5;
    color: white;
    width: 100%;
}

.footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.footer__top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__column h3 {
    font-size: 1.5em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #e0e0e0;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__contact p {
    margin: 0;
    font-size: 1em;
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer__social img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.footer__social img:hover {
    opacity: 0.7;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    font-size: 0.9em;
    opacity: 0.8;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: #e0e0e0;
}

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

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer__column h3 {
        font-size: 1.3em;
        margin-bottom: 1rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 1rem;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__legal {
        gap: 1rem;
    }
}