.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-box h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--white-color);
}

.footer-box p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 1.8rem;
    transition: all 0.5s ease;
}

.footer-social a:hover {
    background: var(--main-color);
    transform: translateY(-5px);
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 1.5rem;
}

.footer-box ul li a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: block;
}

.footer-box ul li a:hover {
    color: var(--main-color);
    padding-left: 0.5rem;
}

.footer-box ul li i {
    margin-right: 1rem;
    color: var(--main-color);
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--main-color);
}