
 /* Footer styling */
.footer {
    background-color: #007bff; /* Blue background */
    color: white;
    width: 100%;
    /*! padding: 20px 0; */
      justify-content: center; 
}

.footer-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    
    
  display: flex;
  justify-content: center;     /* Center the whole footer horizontally */
                  /* Space between columns */
  /*! padding: 30px 20px; */

  flex-wrap: wrap;  
}

@media (min-width: 1024px) {
  .footer-container {
    padding-left: 100px;
  }
}

.footer-column {
      text-align: left;            /* Left-align text inside each column */
  color: white;                /* Optional for light text */
  min-width: 200px; 
/*     flex: 1; */
    
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffeb3b; /* Yellow highlight on hover */
}

.footer-bottom {
    text-align: center;
    /*! margin-top: 30px; */
    /*font-weight: bold;*/
    font-size: 16px;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #ffeb3b; /* Yellow highlight on hover */
}
