.site-footer {
    background-color: #000;
    color: #ffffff;
    font-family: var(--font-family-sans, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif);
  }
  
  .footer-container {
    max-width: var(--max-content-width, 1200px);
    margin: 0 auto;
    padding: 3rem 2rem 1rem;
  }
  
  /* Header Section */
  .footer-header {
    text-align: left;
    margin-bottom: 3rem;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
  
  .footer-logo img {
    height: 80px!important;
    width: auto;
  }
  
  .footer-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    color: #ffffff;
  }
  
  /* Main Content */
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  /* Links Section */
  .footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  
  .footer-column-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  .footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-links-list a {
    color: #cccccc!important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 20px;
  }
  
  .footer-links-list a .material-icons {
    font-size: 16px;
    color: #cccccc;
    transition: color 0.3s ease;
  }
  
  .footer-links-list a:hover {
    color: #01BCC6;
  }
  
  .footer-links-list a:hover .material-icons {
    color: #01BCC6;
  }
  
  /* Bottom Section */
  .footer-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
  }
  
  .footer-about {
    display: flex;
    flex-direction: column;
  }
  
  .footer-company {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-company-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
  }
  
  .footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-address {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
  }
  
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .footer-contact-label {
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    font-size: 0.9rem;
  }
  
  .footer-phone,
  .footer-hours {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
  }
  
  /* Social Media */
  .footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-link.facebook {
    background-color: #1877f2;
    color: white;
  }
  
  .social-link.youtube {
    background-color: #ff0000;
    color: white;
  }
  
  .social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
  }
  
  .social-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }
  
  /* Copyright */
  .footer-copyright {
    background-color: #333333;
    text-align: center;
    margin: 2rem -2rem -1rem -2rem;
    padding: 1rem 2rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  
  .footer-copyright p {
    color: #888;
    font-size: 0.8rem;
    margin: 0;
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .footer-container {
      padding: 2rem 1rem 1rem;
    }
    
    .footer-header {
      margin-bottom: 2rem;
      text-align: center;
    }
    
    .footer-logo {
      flex-direction: column;
      gap: 1rem;
    }
    
    .footer-tagline {
      display: none;
    }
    
    .footer-links {
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    
    .footer-bottom {
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    
    .footer-company-info {
      gap: 0.75rem;
    }
    
    .footer-copyright {
      margin: 2rem -1rem -1rem -1rem;
      margin-left: -50vw;
      margin-right: -50vw;
    }
  }
  
  @media (max-width: 480px) {
    .footer-links {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .footer-column-title {
      font-size: 1rem;
    }
    
    .footer-links-list a {
      font-size: 0.85rem;
    }
    
    .footer-tagline {
      display: none;
    }
    
    .footer-logo img {
      height: 40px;
    }
    
    .footer-bottom {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }