/* Footer */
.footer-container { 
    margin-top: 50px; 
    padding: 25px 0; 
    border-top: 1px solid #e2e8f0; 
    text-align: center; 
}

.footer-nav { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    margin-bottom: 12px; 
    flex-wrap: wrap; 
    align-items: center;
}

.footer-link-btn { 
    background: none; 
    border: none; 
    color: #4a5568; 
    cursor: pointer; 
    text-decoration: underline; 
    font-size: 13px; 
    padding: 0; 
    font-weight: 500;
}

.footer-link-btn:hover { 
    color: #3182ce; 
}

.footer-copy { 
    font-size: 12px; 
    color: #a0aec0; 
}

.legal-modal-overlay { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.5); 
    z-index: 99999; 
    justify-content: center; 
    align-items: center; 
    padding: 15px; 
    box-sizing: border-box;
}

.legal-modal { 
    background: #ffffff; 
    width: 100%; 
    max-width: 550px; 
    border-radius: 12px; 
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); 
    overflow: hidden; 
}

.legal-modal-header { 
    background: #f7fafc; 
    padding: 16px 20px; 
    font-weight: 700; 
    border-bottom: 1px solid #e2e8f0; 
    font-size: 16px; 
    color: #2d3748; 
}

.legal-scroll-box { 
    padding: 20px; 
    max-height: 240px; 
    overflow-y: scroll; 
    font-size: 13.5px; 
    color: #4a5568; 
    line-height: 1.6; 
    border-bottom: 1px solid #e2e8f0; 
    background: #fafafa; 
    box-sizing: border-box;
}

.legal-modal-footer { 
    padding: 15px 20px; 
    display: flex; 
    justify-content: flex-end; 
    background: #f7fafc; 
}

.legal-accept-btn { 
    background: #38a169; 
    color: white; 
    border: none; 
    padding: 10px 28px; 
    font-size: 14px; 
    font-weight: 600; 
    border-radius: 6px; 
    cursor: pointer; 
    transition: background 0.15s; 
}

.legal-accept-btn:hover:not(:disabled) { 
    background: #2f855a; 
}

.legal-accept-btn:disabled { 
    background: #cbd5e0; 
    cursor: not-allowed; 
    opacity: 0.6; 
}
.footer-static-link {
    color: #4a5568;
    text-decoration: underline;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.15s;
}
.footer-static-link:hover {
    color: #3182ce;
}
/* END Footer */