footer {
    background-color: #fff;
    color: #333;
    padding: 40px 0 20px;
    border-top: 1px solid #eee;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
  }
  
  .logo-section img {
    height: 55px;
    margin-bottom: 15px;
  }
  
  .company-description {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 400px;
  }
  
  .contact-info {
    margin-top: 20px;
  }
  
  .contact-label {
    color: #007fd0;
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
  }
  
  .contact-value {
    color: #333;
    margin-bottom: 15px;
    font-size: 14px;
  }
  
  .footer-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #007fd0;
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #007fd0;
  }
  
  .divider {
    height: 1px;
    background-color: #007fd0;
    margin: 20px 0;
  }
  
  .copyright {
    text-align: center;
    color: #555;
    font-size: 14px;
    padding: 10px 0;
  }
  
  .whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s;
  }

  .whatsapp-float img {
    width: 100%;
    height: 100%;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .footer-content {
      display: flex;
    }
    
    .logo-section {
      grid-column: span 2;
    }
  }
  
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .logo-section {
      grid-column: span 1;
    } 
  }
  