.main-footer {
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 24px 32px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #4b5563;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #111827;
}

.footer-logo svg {
    color: #4f46e5;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #4f46e5;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a svg {
    stroke: #4f46e5;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s;
}

.footer-social a:hover svg {
    stroke: #3730a3;
}

.footer-copyright {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}