body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #1c7c54;
    color: #fff;
    margin: 0;
    padding: 0;
    padding-top: 100px; /* Adjust this based on the header height */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1; /* Ensures the container takes up available space */
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

footer {
    background-color: #145239;
    padding: 10px 0;
    text-align: center;
    color: white;
    width: 100%;
    position: relative; /* Changed from fixed to relative */
}
