.main-footer {
    background-color: #F3F3F9;
    border-top: 1px solid rgba(71, 89, 228, 0.1);
    padding: 64px 24px 32px 24px;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.footer-info {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(12, 12, 12, 0.6);
    margin: 0;
}

.footer-links-group {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0C0C0C;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.footer-link-item {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(12, 12, 12, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link-item:hover {
    color: #4759E4;
}

.footer-bottom {
    border-top: 1px solid rgba(12, 12, 12, 0.08);
    padding-top: 24px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: rgba(12, 12, 12, 0.4);
}

.footer-disclaimer {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    line-height: 1.4;
    color: rgba(12, 12, 12, 0.4);
    max-width: 600px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 32px;
    }
    .footer-links-group {
        gap: 32px;
        width: 100%;
        justify-content: space-between;
    }
    .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
