body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body takes up the full height of the viewport */
    margin: 0; /* Remove default margin */
    padding: 0; /* Added padding property */
}

.content-wrapper {
    flex: 1 0 auto; /* This will push the footer down */
    width: 100%;
}

main {
    flex: 1; /* Allow the main content to expand and push the footer down */
}

.footer {
    flex-shrink: 0; /* Prevents the footer from shrinking */
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #57BD91; /* Updated green background */
    color: #fff; /* White text color */
    text-align: center;
    padding: 10px 0px;
    margin: 0; /* Remove any gap */
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    margin: 0 10px;
    color: #fff; /* White link color */
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #1a3d1a; /* Darker green on hover */
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000;
  }
  
  .cookie-consent button {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .accept-btn {
    background-color: #4caf50;
    color: white;
  }
  
  .reject-btn {
    background-color: #f44336;
    color: white;
  }
  
  .purpose-btn {
    background-color: #2196f3;
    color: white;
  }
  
  .purpose-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
  }
  
  .close-purpose-btn {
    margin-top: 10px;
    background-color: #333;
    color: white;
  }
