footer {
    background-color: #f1f1f1;
    padding: 50px 0;
    display: flex; /* Make footer columns flexible */
    justify-content: space-between; /* Distribute content evenly */
    align-items: flex-start; /* Vertically align content at top */
  }
  
  .logoScetion {
    flex: 0 0 20%; /* Set a minimum width for logo section */
    text-align: center;
  }
  
  .logoScetion h3,
  .logoScetion h4 {
    margin: 0;
    font-weight: normal; /* Remove bold for better readability */
  }
  
  .logoScetion img {
    max-width: 100%; /* Ensure logo scales with the section */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 15px;
  }
  
  .helpfulLinks,
  .footerServices,
  .socialMedia {
    flex: 1; /* Make other sections flex to fill remaining space */
    padding: 0 20px;
  }
  
  .helpfulLinks,
  .footerServices {
    list-style: none; /* Remove default bullet points */
    margin: 0;
    padding: 0;
  }
  
  .helpfulLinks li,
  .footerServices li {
    margin-bottom: 10px;
  }
  
  .helpfulLinks h3,
  .footerServices h3 {
    margin-bottom: 15px;
  }
  
  .socialMedia {
    display: flex; /* Make social icons a row */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: flex-start;
    align-items: center;
  }
  
  .socialMedia a img {
    width: 30px; /* Consistent size for social icons */
    height: 30px;
    margin-right: 10px; /* Spacing between icons */
  }
  
  .contactfooter {
    margin-bottom: 15px;
  }
  
  .contactfooter a {
    color: #333;
    text-decoration: none; /* Remove underline */
    display: flex;
    align-items: center;
  }
  
  .contactfooter a img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  
  .Copyright {
    text-align: center;
    color: #333;
    margin-top: 20px;
  }
  
  @media (max-width: 768px) {
    /* For smaller screens */
    .logoScetion,
    .helpfulLinks,
    .footerServices,
    .socialMedia {
      flex: 1; /* Make all sections stack on top of each other */
    }
  
    .socialMedia {
      justify-content: center; /* Center social icons on smaller screens */
    }
  }