/* footer.css */

/* Основний стиль футера */
.footer {
    background: linear-gradient(135deg, #33b788, #00BCD4, #408cd7);
    color: white;
    padding: 20px;
    text-align: left;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'SilpoFontReg', sans-serif;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    width: 30%;
    padding: 10px;
    box-sizing: border-box;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-column p {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.5;
}

.footer-link {
    text-decoration: none;
    background: none;
    box-shadow: none;
    text-align: left;
    padding: 0;
    font-size: 1rem;
}

.footer-link:hover {
    text-decoration: underline;
    background: none;
}

.footer-info {
    width: 100%;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

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

    .footer-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-info {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-column h3 {
        font-size: 1.1rem;
    }

    .footer-column p {
        font-size: 0.9rem;
    }
}
