	
    /* Footer Styles */
    footer {
      background-color: #2a6496;
      color: white;
      padding: 40px 5%;
    }
    
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .footer-logo {
      flex: 1;
      min-width: 250px;
      margin-bottom: 30px;
    }
    
    .footer-logo img {
      width: 250px;
    height: 64px;
    border-radius: 12px;
    margin-bottom: 15px;
    
    border: 11px solid #fff;
    }
    
    .footer-logo h3 {
      font-size: 24px;
      margin-bottom: 10px;
    }
    
    .footer-logo span {
      color: #4CAF50;
    }
    
    .footer-nav {
      flex: 1;
      min-width: 250px;
      margin-bottom: 30px;
    }
    
    .footer-nav h4 {
      font-size: 18px;
      margin-bottom: 20px;
      color: #4CAF50;
    }
    
    .footer-nav ul {
      list-style: none;
    }
    
    .footer-nav li {
      margin-bottom: 10px;
    }
    
    .footer-nav a {
      color: white;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-nav a:hover {
      color: #4CAF50;
    }
    
    .footer-contact {
      flex: 1;
      min-width: 250px;
      margin-bottom: 30px;
    }
    
    .footer-contact h4 {
      font-size: 18px;
      margin-bottom: 20px;
      color: #4CAF50;
    }
    
    .footer-contact p {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }
    
    .footer-contact i {
      margin-right: 10px;
      color: #4CAF50;
    }
    
    .copyright {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 20px;
      font-size: 14px;
    }
    
   
	@media (max-width: 500px) {

      .footer-container {
        flex-direction: column;
      }
    }