html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 2rem; /* Adds space between content and footer */
}

.container {
    flex-grow: 1;
}

footer {
    background-color: #212529;
    color: white;
    text-align: center;
    padding: clamp(0.5rem, 2vw, 1rem) 0; /* Responsive padding */
    font-size: clamp(0.75rem, 1.5vw, 0.875rem); /* Smaller on mobile, normal on larger screens */
    width: 100%;
    margin-top: auto;
    position: relative;
    bottom: 0;
}