 .footer-bg {
     background-color: rgba(19, 66, 133, 0.9);
     /* 218ffe with 90% opacity */
     position: relative;
     overflow: hidden;
 }

 .footer-bg::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image: url('/plugins/kaqidun/assets/images/footer/footer-bg.jpg'); /* 替换为你的背景图片路径 */
     background-size: cover;
     background-position: center;
     z-index: -1;
 }

 .footer-divider {
     border-bottom: 1px solid rgba(255, 255, 255, 0.3);
 }

 .social-icon {
     transition: all 0.3s ease;
 }

 .social-icon:hover {
     transform: translateY(-3px);
 }

 /* 自定义响应式样式 */
 @media (max-width: 996px) {
     .footer-top {
         text-align: center;
     }

     .footer-top .lg\:w-1\/5,
     .footer-top .lg\:w-3\/5 {
         width: 100%;
     }
 }

 @media (max-width: 768px) {
     .get-in-touch-section {
         display: none;
     }
 }

 @media (max-width: 576px) {
     .quick-links-section {
         display: none;
     }
 }