 
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: darkblue;
            padding: 10px 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            height: 15px;
        }

        .contact-info {
            display: flex;
            align-items: center;
            color: white;
            justify-content: flex-start;
            width: 100%;
        }
        .contact-info div {
            margin-right: 20px;
            display: flex;
            align-items: center;
            font-size: 15px;
        }
        .contact-info div i {
            margin-right: 10px;
            font-size: 15px;
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            background-color: white;
            color: darkblue;
        }
        .contact-info a {
            color: white;
            text-decoration: none;
            font-size: 16px;
        }
        
      @media (max-width: 768px){
          .header {
              display: none;
          }
      }
    
    