/* Footer styling */
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #fff;
    color: black;
    font-size: 14px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.divider-shadow {
    height: 1px;
    background: transparent;
    box-shadow: 0px -10px 0px 0px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.footer-container {
    padding: 1rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.footer-link {
    color: #666;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
    footer {
        font-size: 12px;
    }
}