/* Footer */
.footer {
    background-color: var(--dark-color);
    padding: 5rem 0 2rem;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer__logo {
    height: 3rem;
    margin-bottom: 1.5rem;
}

.footer__description {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    color: var(--text-color-light);
    font-size: 1.25rem;
    transition: color 0.3s;
}

.footer__social-link:hover {
    color: var(--primary-color);
}

.footer__title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__link {
    color: var(--text-color-light);
    transition: color 0.3s;
}

.footer__link:hover {
    color: var(--primary-color);
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color-light);
}

.footer__info-icon {
    color: var(--primary-color);
}

.footer__copy {
    padding-top: 2rem;
    border-top: 1px solid rgba(242, 242, 242, 0.1);
    text-align: center;
    color: var(--text-color-light);
}

@media screen and (max-width: 576px) {
    .hero__buttons {
        flex-direction: column;
    }

    .services__container {
        grid-template-columns: 1fr;
    }

    .footer__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__info-item {
        justify-content: center;
    }
}