/* Basic styling for footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section ul, .footer-section form {
    list-style: none;
    padding: 0;
}

.footer-section ul li a, .footer-section p, .footer-bottom p {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    background: #222;
}

/* CSS to ensure footer stays at bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.main-content {
    flex: 1;
}

/*for Responive and fluid  adjusment*/
footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    background-color: #333
  }
  .footer-section {
    flex: 1 1 200px;
    margin: 10px;
  }
  @media (max-width: 600px) {
    .footer-section {
      flex: 1 1 100%;
    }
  }
  