.footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 4rem 0;
    margin-top: 4rem;
}

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

.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 50%;
    height: auto;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #a0a0a0;
    max-width: 400px;
}

.footer-heading {
    text-align: start;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-branding {
        text-align: center;
        align-items: center;
    }

    .footer-nav, .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-self: center;
        text-align: center;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .footer {
        background-color: #0a0a0a;
    }
}

/* Light Mode Support */
@media (prefers-color-scheme: light) {
    .footer {
        background-color: #1a1a1a;
    }
} 