/* Footer Styles - Shared across all pages */
footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-top: 1px solid #2a2a2e;
    color: #b0b0b0;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 12px;
    color: #888;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #3a7bc8;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px 20px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }
}
