      /* Footer Styles */
      footer {
        background: linear-gradient(135deg, #1e5799, #207cca);
        color: white;
        padding: 50px 0 20px;
        margin-top: 50px;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
      }
      
      .footer-title {
        position: relative;
        margin-bottom: 20px;
        font-weight: 600;
      }
      
      .footer-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background: #fff;
        border-radius: 2px;
      }
      
      .footer-links a {
        color: rgba(255,255,255,0.8);
        display: block;
        margin-bottom: 10px;
        transition: all 0.3s ease;
        text-decoration: none;
      }
      
      .footer-links a:hover {
        color: white;
        transform: translateX(5px);
      }
      
      .contact-info {
        color: rgba(255,255,255,0.8);
        margin-bottom: 15px;
      }
      
      .contact-info i {
        width: 25px;
        color: #fff;
      }
      
      .social-icons-footer {
        margin-top: 20px;
      }
      
      .social-icons-footer img {
        width: 35px;
        margin-right: 15px;
        transition: all 0.3s ease;
      }
      
      .social-icons-footer img:hover {
        transform: translateY(-5px);
      }
      
      .copyright {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 20px;
        margin-top: 30px;
        text-align: center;
        color: rgba(255,255,255,0.6);
      }


