.footer {
    background-color: #1c1c1c;
    color: #b0b0b0;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    font-family: Arial, sans-serif;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-content a {
    color: #bdbdbd;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 16px;
    transition: color 0.3s, color 0.3s;
}

.footer-content a:hover {
    color: #969696;
    border-color: #0d6efd;
}

.footer-content p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}