@import url('../variable.css');

footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-brand i {
    color: var(--primary-green);
}

.footer-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}