.zh_footer {
    background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
    color: #FFFFFF;
    padding: 60px 0 30px;
  }
  
  .zh_footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .zh_footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .zh_footer-section h3 {
    color: #ED0D1E;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
  }
  
  .zh_footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #9D9D9D;
  }
  
  .zh_social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .zh_social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(237, 13, 30, 0.1);
    border: 2px solid #ED0D1E;
    border-radius: 50%;
    color: #ED0D1E;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
  }
  
  .zh_social-link:hover {
    background: #ED0D1E;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(237, 13, 30, 0.4);
  }
  
  .zh_partner-logo {
    text-align: center;
  }
  
  .zh_partner-logo img {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
  }
  
  .zh_partner-logo:hover img {
    transform: scale(1.05);
    filter: brightness(0) invert(0.8);
  }
  
  .zh_footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .zh_copyright {
    color: #9D9D9D;
    font-size: 14px;
  }
  
  .zh_footer-links {
    display: flex;
    gap: 30px;
  }
  
  .zh_footer-link {
    color: #9D9D9D;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .zh_footer-link:hover {
    color: #ED0D1E;
    text-decoration: none;
  }
  
  .zh_contact-info {
    color: #9D9D9D;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .zh_contact-info i {
    color: #ED0D1E;
    margin-right: 8px;
    width: 16px;
  }
  
  .zh_footer-highlight {
    background: rgba(237, 13, 30, 0.1);
    border-left: 4px solid #ED0D1E;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 20px;
  }
  
  .zh_footer-highlight h4 {
    color: #ED0D1E;
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .zh_footer-highlight p {
    color: #FFFFFF;
    margin: 0;
    font-size: 14px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .zh_footer {
      padding: 40px 0 20px;
      margin-top: 60px;
    }
    
    .zh_footer-container {
      padding: 0 15px;
    }
    
    .zh_footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
    }
    
    .zh_footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }
    
    .zh_footer-links {
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    
    .zh_social-links {
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .zh_footer {
      padding: 30px 0 15px;
      margin-top: 40px;
    }
    
    .zh_footer-container {
      padding: 0 10px;
    }
    
    .zh_footer-content {
      gap: 25px;
    }
    
    .zh_footer-section h3 {
      font-size: 18px;
    }
    
    .zh_social-link {
      width: 40px;
      height: 40px;
      font-size: 16px;
    }
    
    .zh_partner-logo img {
      max-height: 50px;
    }
  }