.footer {
    background: #2b2b2b;
    color: var(--text-light);
    margin-top: 80px;
    padding: 50px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.95rem;

}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    color: #8fffd2;
    margin-bottom: 14px;
    font-size: 1.1rem;
    position: relative;
    text-align: left;
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 38px;
    height: 2px;
    background: #8fffd2;
    margin-top: 8px;
    border-radius: 999px;
}

.footer-column p,
.footer-column a {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 8px;
    transition: 0.2s;
}

.footer-column a:hover {
    color: #8fffd2;
}

.footer-column-content {
    text-align: left;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    text-align: center;
    width: 100%;
    font-size: 0.9rem;
    color: #888;
}