* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Vidaloka', serif;
  
}


 .footer {
    background-color: rgba(239, 234, 234, 0.9);
     backdrop-filter: blur(10px);
    padding: 5px 20px 10px;
    color: #000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    box-sizing: border-box;
    margin-top: 50px;
  }

  .footer-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 70px;
    align-items: flex-start;
  }

  .footer-section {
    flex: 1 1 220px;
    min-width: 200px;
  }

  .footer-logo {
    height: 70px;
    max-width: 300px;
    margin-left: -65px;
  }

  .partner-logos {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
    margin-left: -50px;
  }

  .partner-logos img:first-child {
    height: 60px;
  }

  .partner-logos img:last-child {
    height: 120px;
    margin-top: -20px;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
  }

  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-menu li {
    margin-bottom: 8px;
    padding: 5px 0px;
    font-weight: 500;
  }

  .footer-menu li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    transition: color 0.3s ease;
  }

  .footer-menu li a:hover {
    color: #938f8f;
  }

  .contact-phone,
  .contact-email {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .contact-phone a,
  .contact-email a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
  }

  .contact-phone a:hover,
  .contact-email a:hover {
    color: #f37272;
  }

  .footer-bottom {
    text-align: center;
    font-size: 14px;
    color: black;
    height: 18px;
    border-top: 1px solid #ccc;
    margin-top: 50px;
    
  
  }
  .pbw_log{
    background-color: rgb(67, 67, 73);
    height: 40px;
    margin-top: 60px;
    margin-left: 50px;
  }

  /* ========== Responsive Media Queries ========== */

  /* Mobile Devices: 0px–480px */
  @media (max-width: 480px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
    }

    .footer-logo {
      height: 80px;
    }

    .partner-logos img:last-child {
      height: 120px;
      margin-top: -10px;
      margin-left: 10px;
    }

    
  .partner-logos img:first-child{
    height: 70px;
    margin-top: 10px;
    margin-left: 90px;
  }

  .footer-section {
      width: 100%;
      
    }
    .footer-title {
      font-size: 16px;
    }

    .footer-menu li a,
    .contact-phone,
    .contact-email {
      font-size: 14px;
    }

     .pbw_log{
    background-color: blue;
    height: 40px;
    margin-top: 30px;
    margin-left: 20px;
  }
  }

  /* Tablets: 481px–768px */
  @media (min-width: 481px) and (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-logo {
      height: 65px;
    }

    
    .partner-logos img:last-child {
      height: 120px;
      margin-top: -10px;
      margin-left: 0px;
    }

    
  .partner-logos img:first-child{
    height: 70px;
    margin-top: 10px;
    margin-left: 170px;
  }
    .footer-section {
      width: 100%;
    }

    .footer-title {
      font-size: 17px;
    }

    .footer-menu li a {
      font-size: 15px;
    }

       .pbw_log{
    background-color: blue;
    height: 40px;
    margin-top: 30px;
    margin-left: 20px;
  }
  }

  /* Laptops: 769px–1024px */
  @media (min-width: 769px) and (max-width: 1024px) {
    .footer-container {
      justify-content: space-around;
    }

    .footer-logo {
      height: 70px;
    }

    .partner-logos img:last-child {
      height: 120px;
      margin-top: -15px;
    }
  }

  /* Desktops: 1025px–1440px */
  @media (min-width: 1025px) and (max-width: 1440px) {
    .footer-container {
      max-width: 1100px;
    }

    .footer-title {
      font-size: 18px;
    }
  }

  /* Large Screens / TVs: 1441px and up */
  @media (min-width: 1441px) {
    .footer-container {
      max-width: 1300px;
    }

    .footer-title {
      font-size: 20px;
    }

    .footer-menu li a {
      font-size: 18px;
    }

    .contact-phone,
    .contact-email {
      font-size: 18px;
    }

    .footer-logo {
      height: 80px;
    }

    .partner-logos img:last-child {
      height: 140px;
    }
  } 