.footer {
    margin-top: 80px;

    background: #ffffff;

    border-top: 1px solid #e2e8f0;
}

.footer-container {
    max-width: 1400px;

    margin: 0 auto;

    padding: 60px 30px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-column h3,
.footer-column h4 {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #0f172a;

    margin-bottom: 16px;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
}

.footer-column p,
.footer-column a {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 10px;

    color: #64748b;

    text-decoration: none;

    line-height: 1.8;
}

.footer-column a:hover {
    color: #2563eb;
}

.footer-column svg {
    width: 16px;
    height: 16px;

    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;

    padding: 20px 30px;

    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;

    font-size: 0.9rem;
}