/* Footer Styles */
.footer {
    width: 100%;
    background: #004d00; /* Dark transparent background */
    color: white;
    text-align: center;
    padding: 15px;
    position: relative;
    bottom: 0;
    left: 0;
    font-size: 16px;
}

/* Center the footer content */
.footer-content {
    max-width: 1100px;
    margin: auto;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        font-size: 14px;
        padding: 12px;
    }
}

/* Ensure body stretches to fit */
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes footer to the bottom */
    min-height: 100vh;
}
