
/* Подвал */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright,
.contact-info {
    font-size: 0.9rem;
}

.contact-info span {
    margin-right: 25px;
}

.contact-info a {
    color: #66b2ff;
    text-decoration: underline;
}

.contact-info a:hover {
    color: #4a90e2;
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-info span {
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
    }
}
