footer {
    background: #f5f5f5;
    color: #1a1a1a;
    padding: 0;
    border-top: 1px solid #e0e0e0;
}

.footer-modern {
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-logo-section {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0);
}

.footer-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.app-button:hover {
    background: #fafafa;
    border-color: #b0b0b0;
}

.app-icon {
    width: 20px;
    height: 20px;
    fill: #1a1a1a;
}

.footer-links-section {
    display: flex;
    gap: 80px;
    flex: 2;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #000;
}

.footer-social-section {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-icon:hover {
    background: #fafafa;
    border-color: #b0b0b0;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: #1a1a1a;
}

.footer-bottom {
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 24px 0;
    margin-top: 60px;
}

.footer-bottom .footer-container {
    padding-top: 0;
    padding-bottom: 0;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.footer-bottom-left {
    flex: 1;
}

.footer-bottom-left p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.footer-legal-text {
    margin-top: 4px !important;
    font-size: 12px !important;
    color: #999;
}

.footer-bottom-right {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-right a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-bottom-right a:hover {
    color: #000;
}

@media (max-width: 1024px) {
    .footer-links-section {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        gap: 40px;
    }

    .footer-links-section {
        flex-direction: column;
        gap: 32px;
        width: 100%;
    }

    .footer-column {
        width: 100%;
    }

    .footer-social-section {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer-logo-section {
        max-width: 100%;
    }

    .footer-container {
        padding: 40px 20px 0 20px;
    }

    .footer-bottom {
        padding: 20px 0;
    }
}