.footer{
    background-color: #302e49;
    color: #ecf0f1;
    margin-top: 50px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer__title {
    color: #6b5cff;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer__description, .footer__link {
    margin: 5px 0;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list__item {
    margin: 8px 0;
}

.list__link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.list__link:hover {
    color: #6b5cff;
}

.footer__section--center .footer__title, .footer__section--center .footer__list {
    text-align: center;
}

.footer__section--right .footer__title, .footer__section--right .footer__description {
    text-align: right;
}

.footer__bottom {
    border-top: 1px solid #d1d1d138;
    padding-top: 20px;
    text-align: center;
}

.bottom__copy {
    margin: 0;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 850px) {
    .footer__section--center .footer__title, .footer__section--center .footer__list {
        text-align: left;
    }
    
    .footer__section--right .footer__title, .footer__section--right .footer__description {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer__container {
        padding: 30px 20px 15px;
    }
}

@media (max-width: 600px) {
    .footer {
    padding-bottom: 70px;
    }
}
