.footer-component {
    background-color: #f5f5f7;
    color: #1d1d1f;
    padding: 60px 40px;
    margin-top: 80px;
    border-radius: var(--radius-large);
    font-family: inherit;
    border: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1d1d1f;
}

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

.footer-links a {
    color: #86868b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: #6798AD;
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 0;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: left;
    font-size: 13px;
    color: #86868b;
}

@media (max-width: 1024px) {
    .footer-component {
        padding: 48px 32px;
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .footer-component {
        padding: 40px 24px;
        margin-top: 40px;
        border-radius: 0;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        border-left: none;
        border-right: none;
    }
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    .footer-bottom {
        text-align: center;
    }
}
