footer {
    position: relative;
    padding-bottom: 8vh;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
  }
  
  .footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    text-decoration: underline;
  }
  
  .footer-section ul {
    padding-right: 30px;
    list-style: none;
  }
  
  .footer-section li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
  }
  
  .footer-section address {
    margin-bottom: 10px;
    line-height: 1.6;
  }
  
  .footer-section p {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  #newsletter-form {
    display: flex;
    align-items: center;
  }
  
  #newsletter-form input[type="email"] {
    width: 70%;
    padding: 10px;
    border-radius: 20px;
    border: none;
    margin-right: 10px;
  }
  
  #newsletter-form button {
    background-color: #f30c0c;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #newsletter-form button:hover {
    background-color: #333;
  }
  
  .footer-bottom {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    position: relative;
    width: 100%;
    margin-bottom: -60px;
    bottom: 0;
  }
  
  .footer-bottom p {
    margin: 0;
    font-size: 20px;
  }
  
  .footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding-right: 30px;
  }
  
  .social-icons {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .social-icons a {
    margin: 0 5px;
    display: inline-block;
  }
  
  .social-icons i {
    width: 25px;
    height: 25px;
    padding-top: 5px;
    background-color: #000;
    transition: transform 0.3s ease;
  }
  
  .social-icons i:hover {
    transform: scale(1.1);
  }
  
  /* Media Queries
  
  /* Tablet and above */
  @media (min-width: 768px) {
    .footer-section {
        flex-basis: 30%;
      }
      .footer-bottom {
        padding: 20px 30px;
      }
   
  }
  
  /* Desktop and above */
  @media (min-width: 1024px) {
    .footer-section {
      flex-basis: 25%;
    }
    .footer-bottom {
      padding: 25px 40px;
    }
   
  }
  
  /* Large screens and above */
  @media (min-width: 1280px) {
    .footer-section {
      flex-basis: 20%;
    }
    .footer-bottom {
      padding: 30px 50px;
    }
  } 
  /* Media query for smaller screens */
@media (max-width: 768px) {
    .footer-section {
        flex-basis: 30%;
      }
      .footer-bottom {
        padding: 20px 30px;
      }
    .social-icons {
      position: relative;
      top: 0;
      transform: none;
      text-align: center;
    }
    .social-icons a {
      margin: 0 10px;
    }
    .social-icons i {
      width: 20px;
      height: 20px;
    }
  }