.footer {
    background-color: #000000;
    padding: 4rem 0;
    margin-top: auto;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Aligned left as requested */
    gap: 2.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand img {
    height: 48px;
    width: auto;
}

.footer-brand span {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-social a {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
    color: #00e667;
}

.footer-social i {
    font-size: 1.15rem;
}

.footer-email {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0;
    }

    .footer-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .footer-brand img {
        height: 40px;
    }

    .footer-brand span {
        font-size: 1.25rem;
    }

    .footer-social {
        gap: 1.5rem;
    }

    .footer-social a {
        font-size: 0.8rem;
    }

    .footer-email {
        font-size: 0.85rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }
}