footer {
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}

footer nav {
    margin-bottom: 1rem;
}

footer a {
    color: #b8b8b8;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    font-size: 1rem;
}

footer a:hover {
    color: #c74168;
}

footer p {
    color: #b8b8b8;
    font-size: 0.85rem;
    opacity: 0.7;
}

section footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 10px;
}

@media (max-width: 480px) {
    footer a {
        font-size: 0.9rem;
        background: transparent;
    }

    footer p {
        font-size: 0.75rem;
    }

    section footer {
        position: static;  /* Reset position for mobile */
        margin-top: 2rem;  /* Add some space between content and footer */
    }
}