/* Footer Styles */
footer {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
    border-top: 1px solid #e7e7e7;
    margin-top: auto; /* Pushes footer to the bottom */
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer {
    line-height: 1.5;
}

.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 0 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    margin: 0;
    font-size: 1.5rem;
}

.footer-links h4,
.footer-newsletter h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--nuvision-primary);
    text-decoration: underline;
}

.newsletter-form {
    display: flex;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 0.75rem 1rem;
    background: var(--nuvision-gradient);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.2s;
}

.newsletter-form button:hover {
    filter: brightness(1.1);
}

.newsletter-message {
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.newsletter-message.success {
    color: #4ade80;
}

.newsletter-message.error {
    color: #f87171;
}

.newsletter-message.info {
    color: #60a5fa;
}

.disclaimer-text {
    font-size: 0.75rem; /* Fine print size */
    color: #a0a0a0; /* Lighter text color */
    max-width: 800px; /* Constrain width */
    margin: 0 auto 1rem; /* Center and add spacing */
    line-height: 1.4;
}

.footer-bottom p, .footer-bottom .disclaimer-text {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
        margin-bottom: 1.5rem;
    }
}